1. 每个用户脚本后缀名必须是.user.js,例如:helloworld.user.js,其内容:
// ==UserScript==
// @name Hello World
// @namespace http://diveintogreasemonkey.org/download/
// @description example script to alert "Hello world!" on every page
// @include *
// @exclude http://diveintogreasemonkey.org/*
// @exclude http://www.diveintogreasemonkey.org/*
// ==/UserScript==
alert('Hello world!');
2. 分析一下用户脚本元数据
用//==UserScript==与//==/UserScript==用于标识脚本的起始,其中包含6行元数据描述。这段注释可以放在脚本的任何位置,但是一般来说是放在脚本的顶部。
//@name Hello World
这是定义你脚本的名子,它将显示在安装对话框中,以及在“Manage User Scripts”对话框。这个名子应该简短并且能够表达脚本的含义。这个元数据可以被省略,如果省略,默认是脚本文件名减去.user.js扩展名。
posted on 2008-03-28 14:18
汪杰 阅读(1709)
评论(0) 编辑 收藏 引用 所属分类:
others