Wildmonkey

Lightweight userscript manager

什么是Wildmonkey?

Wildmonkey是由Dualsub Studio开发的Chrome扩展程序,该扩展的主要功能是“Lightweight userscript manager”。

扩展截图

screenshot
screenshot

下载Wildmonkey扩展crx文件

下载Wildmonkey扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Features:

* Lightweight.
* Supports execute userscripts automatically and manually.
* Supports two types of userscripts, JavaScript and CSS.
* Supports all Web Extension browsers, including mobile browsers.                    

扩展基本信息

名称 Wildmonkey Wildmonkey
ID jlffehhlfkdbdheffcaekpmkhfphmhpg
官方URL https://chromewebstore.google.com/detail/wildmonkey/jlffehhlfkdbdheffcaekpmkhfphmhpg
简介 Lightweight userscript manager
文件大小 75.36 KB
安装次数 477
当前版本 0.16.1
更新时间 2024-01-06
上架时间 2022-01-01
评分 5.00/5 共1次评分
开发者 Dualsub Studio
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/muzuiget/monkey-support
帮助页面URL https://github.com/muzuiget/monkey-support/issues
支持的语言 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "minimum_chrome_version": "110",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.16.1",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "injected.js"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}