Remove Clarify Box on YouTube

Remove the clarify box (election result) on YouTube pages.

  1. // ==UserScript==
  2. // @name Remove Clarify Box on YouTube
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Remove the clarify box (election result) on YouTube pages.
  6. // @author Ken Teague
  7. // @match https://www.youtube.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Function to remove the clarify box
  16. function removeClarifyBox() {
  17. const clarifyBox = document.getElementById('clarify-box');
  18. if (clarifyBox) {
  19. clarifyBox.remove();
  20. }
  21. }
  22.  
  23. // Run the function initially
  24. removeClarifyBox();
  25.  
  26. // Observe the page for any changes to remove the clarify box if it appears
  27. const observer = new MutationObserver(removeClarifyBox);
  28. observer.observe(document.body, { childList: true, subtree: true });
  29. })();

QingJ © 2025

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