Script Runner Pro

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

Script Runner Pro란 무엇입니까?

Script Runner Pro은(는) Script Runner Pro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Script Runner Pro is an extension which provides userscript support for browsers."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Script Runner Pro 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Script Runner Pro Script Runner Pro
ID cofhgpcbaidjkjfbfglfhlklnbhajhpg
공식 URL https://chromewebstore.google.com/detail/script-runner-pro/cofhgpcbaidjkjfbfglfhlklnbhajhpg
설명 Script Runner Pro is an extension which provides userscript support for browsers.
파일 크기 717 KB
설치 횟수 14,812
현재 버전 1.0.2
최근 업데이트 2020-06-02
출시 날짜 2020-06-01
평점 4.89/5 총 111 개의 평점
개발자 Script Runner Pro
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://scriptrunner.pro/
지원되는 언어 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"
    ]
}