BMX Bicycle freestyle
BMX Bicycle freestyle

Wednesday, August 26, 2009

Best Addons for Greasemonkey

Greasemonkey: great scripts


Auto pagerize
http://userscripts.org/scripts/show/8551

makes multiple pages  i.e "google results" seen all on one page so all you need to do is to scroll to next page.


Darken

saves energy and eyes with dark color shems for websites that work i.e google

Slightly modified script (colors):

// Darken
// version 0.1
// Gina Trapani
// 2007-05-10
// Released to the public domain.
//
// ==UserScript==
// @name Darken
// @description Turns a web pages' background black and text grey for readability.
// @include *
// ==/UserScript==
//
// ==RevisionHistory==
// Version 0.1:
// Released: 2007-05-10.
// Initial release.
// ==/RevisionHistory==

javascript:(function(){var newSS, styles='* { background: black ! important; color: #00FF00 !important } :link, :link * { color: #00FFFF !important } :visited, :visited * { color: #551A8B !important }'; if(document.createStyleSheet) { document.createStyleSheet("javascript:'"+styles+"'"); } else { newSS=document.createElement('link'); newSS.rel='stylesheet'; newSS.href='data:text/css,'+escape(styles); document.getElementsByTagName("head")[0].appendChild(newSS); } })();
//.user.js

There is also script that make wikipedia dark.

some other script we like:

you tube hd (also for greasemonkey)
http://userscripts.org/scripts/show/31864

make stupid youtube logo go away, fullscren video and auto hd click as current version

0 comments:

Post a Comment