PinPで再生

    
      
  • /*
     * @title PinPで再生
     * @description 動画を PinPで再生するボタンを表示します
     * @include http://*
     * @license MIT License
     * @require 
     */
    
    (function() {
      var e = document.createElement("button");
      e.innerText = "PinP";
      e.style = "position: absolute; top: 0; right: 0; padding: 10px 15px;; border: none; background: rgba(0, 0, 0, 0.7); color: #fff; font-size: 20px; cursor: pointer";
      e.addEventListener("click", function() { document.querySelector("video").requestPictureInPicture() });
      document.body.appendChild(e);
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2022/11/08 11:25:49 - 2022-11-08