// ==UserScript== // @name 小窗口视频(bili,mgtv) // @version 0.1 // @license MPL-2.0 // @namespace // @description 小窗口视频(bili,mgtv)。网页右下角会出现一个小按钮,点击之后视频会通过小窗口播放。基于chrome浏览器的画中画(Picture in Picture)。 // @author c4r // @match https://www.bilibili.com/video/* // @match https://www.bilibili.com/bangumi/* // @match https://live.bilibili.com/* // @match https://www.mgtv.com/b/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... document.body.insertAdjacentHTML('beforeend','
\
\ Asset 1\
\
') document.getElementById('c4r-oxgs73w7rh').addEventListener("click", ()=>{ document.getElementsByTagName('video')[0].requestPictureInPicture(); }) })();