Remove PiP Disable Attributes

Clear disablePictureInPicture attributes from videos.

目前为 2021-05-18 提交的版本。查看 最新版本

// ==UserScript==
// @name         Remove PiP Disable Attributes  
// @version      1.0
// @description  Clear disablePictureInPicture attributes from videos.
// @author       Polywock
// @match        https://www.hulu.com/*
// @include      http://*
// @include      https://*
// @namespace    https://github.com/polywock
// ==/UserScript==

window.addEventListener("play", function(e) {
    e.target.removeAttribute("disablePictureInPicture")
}, true)

window.addEventListener("pause", function(e) {
    e.target.removeAttribute("disablePictureInPicture")
}, true)