Hide Google Default Search Warning

This removes the new "Set Google as your default search engine" warning on Firefox-based browsers.

  1. // ==UserScript==
  2. // @name Hide Google Default Search Warning
  3. // @namespace http://www.NematzNetwork.com
  4. // @description This removes the new "Set Google as your default search engine" warning on Firefox-based browsers.
  5. // @include https://www.google.com/*
  6. // @include https://www.google.com/search
  7. // @include https://google.com/*
  8. // @include https://*.google.com/*
  9. // @include http://www.google.com/*
  10. // @include http://www.google.com/search
  11. // @include http://google.com/*
  12. // @include http://*.google.com/*
  13. // @version 1
  14. // @grant none
  15. // ==/UserScript==
  16.  
  17. var pushdown = document.getElementById('pushdown');
  18. if (pushdown) {
  19. pushdown.parentNode.removeChild(pushdown);
  20. }

QingJ © 2025

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