Script Runner Pro

Script Runner Pro is an extension which provides userscript support for browsers.

Cos'è Script Runner Pro?

Script Runner Pro è un'estensione di Chrome sviluppata da Script Runner Pro, e la sua funzione principale è "Script Runner Pro is an extension which provides userscript support for browsers.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Script Runner Pro

Scarica i file di estensione Script Runner Pro 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

                        A fresh new script runner chrome extension with material design.

Script Runner Pro is a userscript manager. There are a lot of userscripts repositories like greasyfork or openuserjs. You can also write your own scripts in script editor.                    

Informazioni di Base sull'Estensione

Nome Script Runner Pro Script Runner Pro
ID cofhgpcbaidjkjfbfglfhlklnbhajhpg
URL Ufficiale https://chromewebstore.google.com/detail/script-runner-pro/cofhgpcbaidjkjfbfglfhlklnbhajhpg
Descrizione Script Runner Pro is an extension which provides userscript support for browsers.
Dimensione del File 717 KB
Conteggio Installazioni 14,812
Versione Corrente 1.0.2
Ultimo Aggiornamento 2020-06-02
Data di Pubblicazione 2020-06-01
Valutazione 4.89/5 Totale 111 Valutazioni
Sviluppatore Script Runner Pro
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://scriptrunner.pro/
Lingue Supportate id,de,en,fr,vi,tr,es,hr,it,pl,pt-BR,pt-PT,ro,sk,fi,cs,el,sr,ru,uk,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "public\/images\/icon16.png",
        "48": "public\/images\/icon48.png",
        "128": "public\/images\/icon128.png"
    },
    "default_locale": "en",
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "19": "public\/images\/icon19.png",
            "38": "public\/images\/icon38.png"
        },
        "default_title": "__MSG_extName__",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "page": "background\/index.html"
    },
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "homepage_url": "https:\/\/scriptrunner.pro\/",
    "content_scripts": [
        {
            "js": [
                "browser.js",
                "injected-web.js",
                "injected.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "",
        "webRequest",
        "webRequestBlocking",
        "notifications",
        "storage",
        "unlimitedStorage",
        "clipboardWrite",
        "contextMenus",
        "downloads"
    ]
}