ScriptCat

ScriptCat

脚本猫,一个可以执行用户脚本的浏览器扩展,万物皆可脚本化,让你的浏览器可以做更多的事情!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ScriptCat",
  "version": "0.16.1",
  "author": "CodFrm",
  "description": "脚本猫,一个用户脚本管理器,支持后台脚本、定时脚本、页面脚本,可编写脚本每天帮你自动处理事务.",
  "options_ui": {
    "page": "src/options.html",
    "open_in_tab": true
  },
  "default_locale": "zh_CN",
  "icons": {
    "128": "assets/logo.png"
  },
  "browser_action": {
    "default_popup": "src/popup.html"
  },
  "background": {
    "page": "src/background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "cookies",
    "storage",
    "downloads",
    "webRequest",
    "background",
    "<all_urls>",
    "contextMenus",
    "notifications",
    "clipboardWrite",
    "webRequestBlocking"
  ],
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "91.1.0",
      "id": "{8e515334-52b5-4cc5-b4e8-675d50af677d}"
    }
  }
}