Script Runner Pro

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

Co to jest Script Runner Pro?

Script Runner Pro to rozszerzenie Chrome opracowane przez Script Runner Pro, a jego główną funkcją jest „Script Runner Pro is an extension which provides userscript support for browsers.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Script Runner Pro

Pobierz pliki rozszerzeń Script Runner Pro w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Script Runner Pro Script Runner Pro
ID cofhgpcbaidjkjfbfglfhlklnbhajhpg
Oficjalny URL https://chromewebstore.google.com/detail/script-runner-pro/cofhgpcbaidjkjfbfglfhlklnbhajhpg
Opis Script Runner Pro is an extension which provides userscript support for browsers.
Rozmiar pliku 717 KB
Liczba instalacji 14,812
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2020-06-02
Data Publikacji 2020-06-01
Ocena 4.89/5 Łącznie 111 Oceny
Deweloper Script Runner Pro
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://scriptrunner.pro/
Obsługiwane Języki 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"
    ]
}