Script Runner Pro

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

Script Runner Pro là gì?

Script Runner Pro là một tiện ích mở rộng Chrome được phát triển bởi Script Runner Pro, và tính năng chính của nó là "Script Runner Pro is an extension which provides userscript support for browsers.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Script Runner Pro

Tải xuống các tệp mở rộng Script Runner Pro dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Script Runner Pro Script Runner Pro
ID cofhgpcbaidjkjfbfglfhlklnbhajhpg
URL Chính Thức https://chromewebstore.google.com/detail/script-runner-pro/cofhgpcbaidjkjfbfglfhlklnbhajhpg
Mô tả Script Runner Pro is an extension which provides userscript support for browsers.
Kích Thước Tệp 717 KB
Số Lần Cài Đặt 14,812
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2020-06-02
Ngày Phát Hành 2020-06-01
Đánh Giá 4.89/5 Tổng số 111 Đánh Giá
Nhà Phát Triển Script Runner Pro
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://scriptrunner.pro/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}