Greasy Fork镜像 支持简体中文。

Remove "Before you continue" to YouTube

Auto-clicks "Reject all" when browsing without cookies.

  1. // ==UserScript==
  2. // @name Remove "Before you continue" to YouTube
  3. // @author Animatorium
  4. // @description Auto-clicks "Reject all" when browsing without cookies.
  5. // @version 1.0
  6. // @grant none
  7. // @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
  8. // @include /https:\/\/(www|consent)\.(youtube)\.*\w+\/.*$/
  9. // @namespace https://gf.qytechs.cn/users/11231
  10. // ==/UserScript==
  11.  
  12. function checkAndClick() {
  13. if ($('#dialog:visible').length > 0) {
  14. $('button:contains("Reject all")').click();
  15. clearInterval(checkInterval);
  16. }
  17. }
  18. var checkInterval = setInterval(checkAndClick, 1000);
  19.  
  20. $(window).on("load", function() {
  21. var currentURL = window.location.href;
  22. if (currentURL.includes("consent.youtube.com")) {
  23. $('span:contains("Reject all")').click();
  24. }
  25. });

QingJ © 2025

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