0

Every time I open google homepage in Firefox I keep getting this really annoying message below the address bar as shown below.

Get to Google faster. Add Google to your start page.

I often delete history(cache), so even if I click "No Thanks", it appears again. Is there a script to disable it permanently.

Is it possible to remove the "Install Google Chrome" ad from the Google home page.

enter image description here

Edit: There seems to be no solution neither on the internet nor from the users here, so I formed my own script. Works fine. Please refer my answer below.

4

1 回答 1

0

Greasemonkey插件安装到 firefox 并添加以下脚本。

google.promos&&google.promos.toast && google.promos.toast.cpc(); window.google.promos.pushdown.pd_tp = function(){return false;};


如果您想了解它的工作原理,请进一步阅读。

删除 Chrome 促销盒:代码的第一行调用了当我们单击 chrome 促销盒上的关闭按钮时执行的函数。

禁用下推栏:不幸的是,这个任务不像前一个那么容易,因为下推栏会在短暂的延迟后激活(谷歌人的聪明编程)。因此,我们唯一的选择是删除启动下推事件的函数的内容。第二行有效地完成了这一点。

于 2013-07-28T00:35:21.307 回答