bitchute

fix bitchute videos on seamonkey and palemoon

  1. // ==UserScript==
  2. // @name bitchute
  3. // @namespace btc1
  4. // @include https://www.bitchute.com/*
  5. // @run-at document-start
  6. // @version 1
  7. // @grant none
  8. // @description fix bitchute videos on seamonkey and palemoon
  9. // @license MIT
  10. // ==/UserScript==
  11. if(window.location.hostname == 'www.bitchute.com') {
  12. document.addEventListener("beforescriptexecute",
  13. function(e) {
  14. if(e.target.src == 'https://cdnjs.cloudflare.com/ajax/libs/plyr/3.6.9/plyr.polyfilled.min.js') {
  15. var s = document.createElement('script');
  16. s.type = 'text/javascript';
  17. s.src = 'https://cdnjs.cloudflare.com/ajax/libs/plyr/3.6.8/plyr.polyfilled.min.js';
  18. s.async = false;
  19. e.target.parentNode.insertBefore(s, e.target.nextSibling);
  20. e.preventDefault();
  21. e.stopPropagation();
  22. };
  23. }
  24. , true);
  25. };

QingJ © 2025

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