Scriptable

Configurable page scripts

Scriptable là gì?

Scriptable là một tiện ích mở rộng Chrome được phát triển bởi RaoQu, và tính năng chính của nó là "Configurable page scripts".

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

screenshot

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

Tải xuống các tệp mở rộng Scriptable 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

                        v1.3 Cross origin ajax request enabled.
v1.5 Execute script on page load or clicking extension icon
v2.0 Add crawl API, @see https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md                    

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

Tên Scriptable Scriptable
ID hbheihpcmapeadnhhpglmpjknfjdjncc
URL Chính Thức https://chrome.google.com/webstore/detail/scriptable/hbheihpcmapeadnhhpglmpjknfjdjncc
Mô tả Configurable page scripts
Kích Thước Tệp 148 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 2.1.5
Cập Nhật Lần Cuối 2017-05-12
Ngày Phát Hành 2017-05-12
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển RaoQu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/raoqu/scriptable
URL Trang Trợ Giúp https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scriptable",
    "description": "Configurable page scripts",
    "version": "2.1.5",
    "background": {
        "scripts": [
            "common_base.js",
            "common_callback.js",
            "background_lib_extension.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "common_base.js",
                "common_callback.js",
                "common_extension.js",
                "content_lib_url.js",
                "content_lib_html.js",
                "content_lib_net.js",
                "content_lib_download.js",
                "content_util_crawler.js",
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_name": "Scriptable",
        "default_icon": "icon16.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "downloads",
        "storage",
        "unlimitedStorage",
        "http:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https:\/\/maps.googleapis.com; img-src https:\/\/maps.google.com"
}