Skip to content
New issue

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

用油猴子定制你的个性化插件 #8

Open
hoperyy opened this issue Jun 24, 2017 · 0 comments
Open

用油猴子定制你的个性化插件 #8

hoperyy opened this issue Jun 24, 2017 · 0 comments

Comments

@hoperyy
Copy link
Owner

hoperyy commented Jun 24, 2017

介绍

通过油猴子,就可以用 JS 打造自己的专属浏览器插件

教程推荐

教程推荐:深入浅出Greasemonkey

使用方法

油猴子的使用方法是:油猴子插件 + 个性化脚本(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 的依赖,如:

    JS 代码中需要使用GM_log,就需要引入依赖:// @grant GM_log

##第三步:安装个性化脚本到油猴子

写完脚本后,就可以安装到油猴子里使用了。有两种方法:

  • 方法一
    • 直接在油猴子上编写
      • 在油猴子插件上右键-->仪表盘-->新建脚本
  • 方法二
    • 将 JS 文件拖到浏览器扩展界面即可

查看脚本代码

在油猴子插件上右键-->仪表盘

@hoperyy hoperyy added the 工具 label Jun 26, 2017
@hoperyy hoperyy added the 2014 label Aug 19, 2017
@hoperyy hoperyy removed the 工具 label Oct 12, 2017
@hoperyy hoperyy closed this as completed Apr 29, 2018
@hoperyy hoperyy reopened this May 29, 2018
@hoperyy hoperyy added 工具 and removed 工具 labels May 29, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant