DFP Tooltip blocker

removes anoying tooltips

  1. // ==UserScript==
  2. // @name DFP Tooltip blocker
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description removes anoying tooltips
  6. // @author Torsten
  7. // @match https://www.google.com/dfp/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. var css = '[class*="gux-tooltip"]{ display:none; !important; }';
  13. var head = document.head || document.getElementsByTagName('head')[0];
  14. var style = document.createElement('style');
  15.  
  16. style.type = 'text/css';
  17. if (style.styleSheet){
  18. style.styleSheet.cssText = css;
  19. } else {
  20. style.appendChild(document.createTextNode(css));
  21. }
  22.  
  23. head.appendChild(style);
  24. })();

QingJ © 2025

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