web123lai
千年狐狸
千年狐狸
  • UID8036
  • 注册日期2005-08-17
  • 最后登录2019-05-01
  • 发帖数4225
  • 经验13枚
  • 威望1点
  • 贡献值20点
  • 好评度10点
  • 社区居民
阅读:1936回复:3

大家都有些什么greasemonkey扩展?

楼主#
更多 发布于:2005-09-16 08:32
发现greasemonkey是个好东西,在作者主页上找了几个脚本还挺好用,在论坛里发现了修正winzheng的好东西,想来大家还有不少私货吧,就想向大家淘淘宝。
先说说我发现的几个:
sina news ad remover
bulter
fix winzheng downloads
自己一时兴起就模仿着写了个去baidu文字广告的,没什么东西,就是个xpath,就当是抛砖了。
附件名称/大小 下载次数 最后更新
baiduadremover.user.zip (1KB)  137 2005-09-16 08:31
问题专家
火狐狸
火狐狸
  • UID5440
  • 注册日期2005-04-24
  • 最后登录2006-02-08
  • 发帖数231
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
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为不可选状态?
fang5566
管理员
管理员
  • UID3719
  • 注册日期2005-03-07
  • 最后登录2024-04-29
  • 发帖数18483
  • 经验4837枚
  • 威望5点
  • 贡献值4316点
  • 好评度1116点
  • 社区居民
  • 最爱沙发
  • 忠实会员
  • 终身成就
2楼#
发布于:2005-09-16 08:32
sina的remove的js给我一个把
Firefox More than meets your experience
web123lai
千年狐狸
千年狐狸
  • UID8036
  • 注册日期2005-08-17
  • 最后登录2019-05-01
  • 发帖数4225
  • 经验13枚
  • 威望1点
  • 贡献值20点
  • 好评度10点
  • 社区居民
3楼#
发布于:2005-09-16 08:32
fang5566:sina的remove的js给我一个把回到原帖


http://userscripts.org/scripts/show/1659
官方那边的,不用怕木马
游客

返回顶部