Since chrome came out, Firefox has not been used for a long time. Still return to Firefox, because firebug is really hard to give up. But today we will talk about another well-known plug-in --- greasemonkey.
Greasemonkey is a user script management tool in Firefox. With greasemonkey, you can use custom scripts to help us surf the Internet more conveniently. It is useless to say more. Let's look at the simplest Hello world.
Code
// ==UserScript==
// @name hello
// @namespace fans
// @include http://*
// @exclude http://www.cnblogs.com/phonefans
// ==/UserScript==
alert("hello world");
If you add this code to greasemonkey, you will be greeted every time you enter a page. Of course, this small demo is useless. You can develop your own userscript.
The change method of the greasemonkey editor is attached. Go to the about: config page, find greasemonkey. Editor, and modify it directly. It is best to use notepad.exe. I changed it to vs2008.
However, there are a lot of practical scripts on the Internet, so we can be the "accessors". below is my own use.
1.Gmail super clean
It turns the Gmail interface into a simple light blue Web 2.0 style.
2.Gmail spam-count hide
Hide the Count of spam in Gmail. It is a realm in the legend that is invisible.
3.Del. icio. us prettifier
Do you think the Del. icio. us interface is very distinctive (ugly )? Install it.
4.Google MP3Recommended installation.
Google MP3 player is automatically called to play MP3 files on any webpage. Google MP3 player is like this. Gmail
Google MP3 player is automatically called to play the MP3 file in the attachment. Since Gmail can use this player, we can also use it.
Of course, you can go to http://userscripts.org/to find a specific drop.
Finally, the installation path of greasemonkey is provided: click here