阅读:2199回复:3
大家都有些什么greasemonkey扩展?
发现greasemonkey是个好东西,在作者主页上找了几个脚本还挺好用,在论坛里发现了修正winzheng的好东西,想来大家还有不少私货吧,就想向大家淘淘宝。
先说说我发现的几个: sina news ad remover bulter fix winzheng downloads 自己一时兴起就模仿着写了个去baidu文字广告的,没什么东西,就是个xpath,就当是抛砖了。 |
|
|
1楼#
发布于:2005-09-16 08:32
// Auto Reload
// version 0.1 // 2005-04-06 // Copyright (c) 2005, Julien Couvreur // Released under the GPL license // http://www.gnu.org/copyleft/gpl.html // -------------------------------------------------------------------- // // This is a Greasemonkey user script. // // To install, you need Greasemonkey: http://greasemonkey.mozdev.org/ // Then restart Firefox and revisit this script. // Under Tools, there will be a new menu item to "Install User Script". // You should configure the Included and Excluded pages in the GreaseMonkey // configuration pane. // // To uninstall, go to Tools/Manage User Scripts, // select "Auto Reload", and click Uninstall. // // -------------------------------------------------------------------- // // WHAT IT DOES: // Reload the pages configured in the Included page list every minute. // // -------------------------------------------------------------------- // // ==UserScript== // @name Auto Reload // @namespace http://blog.monstuff.com/archives/cat_greasemonkey.html // @description "Included pages" will get reloaded every minute. // @include http://put.your.own.pages/*/here // ==/UserScript== (function() { setTimeout("document.location.reload();", 60000); })(); 借地方问一下,为什么打开上面的js后tools下的install this user script为不可选状态? |
|
2楼#
发布于:2005-09-16 08:32
sina的remove的js给我一个把
|
|
|
3楼#
发布于:2005-09-16 08:32
|
|