Wildmonkey

Lightweight userscript manager

Cos'è Wildmonkey?

Wildmonkey è un'estensione di Chrome sviluppata da Dualsub Studio, e la sua funzione principale è "Lightweight userscript manager".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Wildmonkey

Scarica i file di estensione Wildmonkey in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Features:

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

Informazioni di Base sull'Estensione

Nome Wildmonkey Wildmonkey
ID jlffehhlfkdbdheffcaekpmkhfphmhpg
URL Ufficiale https://chromewebstore.google.com/detail/wildmonkey/jlffehhlfkdbdheffcaekpmkhfphmhpg
Descrizione Lightweight userscript manager
Dimensione del File 75.36 KB
Conteggio Installazioni 477
Versione Corrente 0.16.1
Ultimo Aggiornamento 2024-01-06
Data di Pubblicazione 2022-01-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Dualsub Studio
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/muzuiget/monkey-support
URL della Pagina di Aiuto https://github.com/muzuiget/monkey-support/issues
Lingue Supportate 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"
            ]
        }
    ]
}