Hide Google Default Search Warning

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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);
}