bitchute

fix bitchute videos on seamonkey and palemoon

// ==UserScript==
// @name        bitchute
// @namespace   btc1
// @include     https://www.bitchute.com/*
// @run-at document-start
// @version     1
// @grant       none
// @description fix bitchute videos on seamonkey and palemoon
// @license MIT
// ==/UserScript==
if(window.location.hostname == 'www.bitchute.com') {
   document.addEventListener("beforescriptexecute",
    function(e) {
      if(e.target.src == 'https://cdnjs.cloudflare.com/ajax/libs/plyr/3.6.9/plyr.polyfilled.min.js') {
        var s = document.createElement('script');
        s.type = 'text/javascript';
        s.src = 'https://cdnjs.cloudflare.com/ajax/libs/plyr/3.6.8/plyr.polyfilled.min.js';
        s.async = false;
        e.target.parentNode.insertBefore(s, e.target.nextSibling);
        e.preventDefault();
        e.stopPropagation();
      };
    }
   , true);
};

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址