Hide "A privacy reminder from Google"

Hide "A privacy reminder from Google" in Google homepage footer and above search results.

  1. // ==UserScript==
  2. // @name Hide "A privacy reminder from Google"
  3. // @description Hide "A privacy reminder from Google" in Google homepage footer and above search results.
  4. // @include https://*.google.*
  5. // @version 2017.01.02
  6. // @grant none
  7. // @namespace https://gf.qytechs.cn/users/2969
  8. // ==/UserScript==
  9.  
  10. let s = document.createElement('style')
  11. s.textContent = `
  12.  
  13. [jsaction^="dg_dismissed"] ~ * ,
  14. [jsaction^="dismiss_warmup"] {
  15. display: none !important;
  16. }
  17.  
  18. `;
  19.  
  20. document.head.appendChild(s);

QingJ © 2025

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