Wildmonkey

Lightweight userscript manager

What is Wildmonkey?

Wildmonkey is a Chrome extension developed by Dualsub Studio, and its main feature is "Lightweight userscript manager".

Extension Screenshots

screenshot
screenshot

Download Wildmonkey Extension CRX File

Download Wildmonkey extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Features:

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

Extension Basic Information

Name Wildmonkey Wildmonkey
ID jlffehhlfkdbdheffcaekpmkhfphmhpg
Official URL https://chromewebstore.google.com/detail/wildmonkey/jlffehhlfkdbdheffcaekpmkhfphmhpg
Description Lightweight userscript manager
File Size 75.36 KB
Installation Count 477
Current Version 0.16.1
Last Updated 2024-01-06
Publish Date 2022-01-01
Rating 5.00/5 Total 1 Ratings
Developer Dualsub Studio
Email [email protected]
Payment Type free
Extension Website https://github.com/muzuiget/monkey-support
Help Page URL https://github.com/muzuiget/monkey-support/issues
Supported Languages 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"
            ]
        }
    ]
}