您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This removes the new "Set Google as your default search engine" warning on Firefox-based browsers.
- // ==UserScript==
- // @name Hide Google Default Search Warning
- // @namespace http://www.NematzNetwork.com
- // @description This removes the new "Set Google as your default search engine" warning on Firefox-based browsers.
- // @include https://www.google.com/*
- // @include https://www.google.com/search
- // @include https://google.com/*
- // @include https://*.google.com/*
- // @include http://www.google.com/*
- // @include http://www.google.com/search
- // @include http://google.com/*
- // @include http://*.google.com/*
- // @version 1
- // @grant none
- // ==/UserScript==
- var pushdown = document.getElementById('pushdown');
- if (pushdown) {
- pushdown.parentNode.removeChild(pushdown);
- }