We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
通过油猴子,就可以用 JS 打造自己的专属浏览器插件
JS
教程推荐:深入浅出Greasemonkey
油猴子的使用方法是:油猴子插件 + 个性化脚本(JS)。
##第一步:安装油猴子插件
##第二步:编写个性化脚本
脚本文件必须以 xx.user.js 形式命名
xx.user.js
脚本文件结构如下
// ==UserScript== // @name My Fancy New Userscript // @namespace http://your.homepage/ // @version 0.1 // @description enter something useful // @author You // @match http://*/* // @grant none // ==/UserScript== // 你的代码 alert('hello Greasemonkey');
以上介绍,详见:代码介绍
补充: 油猴子有各种 API
//@grant 即是引入 API 的依赖,如:
//@grant
JS 代码中需要使用GM_log,就需要引入依赖:// @grant GM_log
GM_log
// @grant GM_log
##第三步:安装个性化脚本到油猴子
写完脚本后,就可以安装到油猴子里使用了。有两种方法:
在油猴子插件上右键-->仪表盘
The text was updated successfully, but these errors were encountered:
No branches or pull requests
介绍
通过油猴子,就可以用
JS
打造自己的专属浏览器插件教程推荐
教程推荐:深入浅出Greasemonkey
使用方法
油猴子的使用方法是:油猴子插件 + 个性化脚本(JS)。
##第一步:安装油猴子插件
##第二步:编写个性化脚本
脚本文件必须以
xx.user.js
形式命名脚本文件结构如下
以上介绍,详见:代码介绍
补充:
油猴子有各种 API
//@grant
即是引入 API 的依赖,如:JS
代码中需要使用GM_log
,就需要引入依赖:// @grant GM_log
##第三步:安装个性化脚本到油猴子
写完脚本后,就可以安装到油猴子里使用了。有两种方法:
查看脚本代码
在油猴子插件上右键-->仪表盘
The text was updated successfully, but these errors were encountered: