Wildmonkey

Lightweight userscript manager

Wat is Wildmonkey?

Wildmonkey is een Chrome-extensie ontwikkeld door Dualsub Studio, en de belangrijkste functie is "Lightweight userscript manager".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Wildmonkey

Download Wildmonkey-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Features:

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

Basisinformatie over de Extensie

Naam Wildmonkey Wildmonkey
ID jlffehhlfkdbdheffcaekpmkhfphmhpg
Officiële URL https://chromewebstore.google.com/detail/wildmonkey/jlffehhlfkdbdheffcaekpmkhfphmhpg
Beschrijving Lightweight userscript manager
Bestandsgrootte 75.36 KB
Aantal Installaties 477
Huidige Versie 0.16.1
Laatst Bijgewerkt 2024-01-06
Publicatiedatum 2022-01-01
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Dualsub Studio
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/muzuiget/monkey-support
Help Pagina-URL https://github.com/muzuiget/monkey-support/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}