Differences between revisions 1 and 22 (spanning 21 versions)
Revision 1 as of 2005-07-13 06:25:21
Size: 671
Editor: qingfeng
Comment:
Revision 22 as of 2006-12-13 08:29:17
Size: 3024
Editor: hoxide
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
'''Greasemonkey-- FireFox插件开发利器!'''
Line 2: Line 3:
= Greasemonkey = = 简介 =
Line 9: Line 10:
'''推荐脚本:'''Inline MP3 Player。安装以后网页所有mp3后缀的连接都会跟上一个播放按钮,可以直接播放之,还有很多很cool的插件,推荐!
Line 11: Line 11:
= 清风提供的脚本 =
attachment:hello.user.js
= 关于Greasemonkey的开发 =
[[Include(GreasemonkeyTut)]]
= 大家贡献自己开发的脚本 =
== weide's ==
[[Include(GmonkeyWides)]]
== 清风的脚本 ==
=== 一个随时将所想发到Bloglines的插件 ===
下载:attachment:TexttoBloglines0.1.user.js

本想将插件做在菜单中,可惜Greasemonkey和Firefox1.0.6有冲突,注册菜单函数,无法使用,哭。。。所以只好又在屏幕上加上一个小图标,点击后,日志自动保存到了Bloglines

=== 一个新浪vivi的插件 ===
安装以后,屏幕右下角出现一vivi图标,点击后即可将当前网页保存至vivi。

发布1.1版本,使得vivi图标始终居于右下角。

解决方法:
{{{
div.style.position = "fixed";
}}}

'''截图:'''

attachment:vivi.scr1.gif

安装:

attachment:vivi1.1.user.js

''对其按右键即可安装''
Line 16: Line 45:

#== 使Firefox在浏览包含插件的目录时能通过点击安装 ==
#[[Include(/rewriteaddon)]]

= 推荐脚本 =
== Inline MP3 Player ==

 * 安装以后网页所有mp3后缀的连接都会跟上一个播放按钮,可以直接播放之,还有很多很cool的插件,推荐!

 * 截图:

attachment:Greasemonkey_mp3.gif

安装:http://musicplayer.sourceforge.net/greasemonkey/inline.player.user.js

== Greasemap ==
Greasemap是一个由Greasemonkey开发的firefox插件,其作用就是读取网页的地图信息。
{{{
<meta name='ICBM' content="39.93333, 116.2833" />
}}}

然后利用GoogleMap的API读取位置信息,显示出相应的地图。

思路拓展:比如一个商店的网站,利用该插件就可以轻松的显示出店铺位置。

效果:

attachment:Greasemap.gif

安装:http://www.vinq.com/greasemap/greasemap.user.js

Greasemonkey真是越玩越有趣了:)

= 相关资源 =
== Dive into Greasemonkey ==
 * 好书!
  * '''[http://diveintogreasemonkey.org/install/what-is-greasemonkey.html 《Dive into Greasemonkey》] -- 深入 Greasemonkey!'''
  * [http://www.woodpecker.org.cn/share/doc/diveintogreasemonkey-2005-05-09/toc/ 本地在线阅读]
  * [http://www.woodpecker.org.cn/share/doc/diveintogreasemonkey-2005-05-09/videos/ 本地视频演示阅览]
  * [http://dunck.us/collab/GreaseMonkeyUserScriptsGeneric 大量脚本下载]
== Greasemonkey for IE ==
http://www.bhelpuri.net/Trixie/Trixie.htm

== 服务器端的Greasemonkey ==
[http://monkeygrease.org/ Monkeygrease]

[http://blog.donews.com/changzheng/archive/2005/11/09/620560.aspx 相关使用]

Greasemonkey-- FireFox插件开发利器! TableOfContents

简介

Greasemonkey一个Firefox的扩展,可以执行javascript脚本,为页面添加很多实用功能。很Cool,以后为firefox编写插件就更容易了,推荐之!

主页:http://greasemonkey.mozdev.org/index.html

可用脚本:http://dunck.us/collab/GreaseMonkeyUserScriptsGeneric

关于Greasemonkey的开发

Include(GreasemonkeyTut)

大家贡献自己开发的脚本

weide's

Include(GmonkeyWides)

清风的脚本

一个随时将所想发到Bloglines的插件

下载:attachment:TexttoBloglines0.1.user.js

本想将插件做在菜单中,可惜Greasemonkey和Firefox1.0.6有冲突,注册菜单函数,无法使用,哭。。。所以只好又在屏幕上加上一个小图标,点击后,日志自动保存到了Bloglines

一个新浪vivi的插件

安装以后,屏幕右下角出现一vivi图标,点击后即可将当前网页保存至vivi。

发布1.1版本,使得vivi图标始终居于右下角。

解决方法:

div.style.position = "fixed";

截图:

attachment:vivi.scr1.gif

安装:

attachment:vivi1.1.user.js

对其按右键即可安装

说明: 安装以后,点击网页任意图片都会弹出Hello World

#== 使Firefox在浏览包含插件的目录时能通过点击安装 == #Include(/rewriteaddon)

推荐脚本

Inline MP3 Player

  • 安装以后网页所有mp3后缀的连接都会跟上一个播放按钮,可以直接播放之,还有很多很cool的插件,推荐!
  • 截图:

attachment:Greasemonkey_mp3.gif

安装:http://musicplayer.sourceforge.net/greasemonkey/inline.player.user.js

Greasemap

Greasemap是一个由Greasemonkey开发的firefox插件,其作用就是读取网页的地图信息。

<meta name='ICBM' content="39.93333, 116.2833" />

然后利用GoogleMap的API读取位置信息,显示出相应的地图。

思路拓展:比如一个商店的网站,利用该插件就可以轻松的显示出店铺位置。

效果:

attachment:Greasemap.gif

安装:http://www.vinq.com/greasemap/greasemap.user.js

Greasemonkey真是越玩越有趣了:)

相关资源

Dive into Greasemonkey

Greasemonkey for IE

http://www.bhelpuri.net/Trixie/Trixie.htm

服务器端的Greasemonkey

[http://monkeygrease.org/ Monkeygrease]

[http://blog.donews.com/changzheng/archive/2005/11/09/620560.aspx 相关使用]

Greasemonkey (last edited 2009-12-25 07:11:03 by localhost)