Scriptable

Configurable page scripts

什么是Scriptable?

Scriptable是由RaoQu开发的Chrome扩展程序,该扩展的主要功能是“Configurable page scripts”。

扩展截图

screenshot

下载Scriptable扩展crx文件

下载Scriptable扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Scriptable Scriptable
ID hbheihpcmapeadnhhpglmpjknfjdjncc
官方URL https://chrome.google.com/webstore/detail/scriptable/hbheihpcmapeadnhhpglmpjknfjdjncc
简介 Configurable page scripts
文件大小 148 KB
安装次数 22
当前版本 2.1.5
更新时间 2017-05-12
上架时间 2017-05-12
评分 5.00/5 共2次评分
开发者 RaoQu
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/raoqu/scriptable
帮助页面URL https://github.com/raoqu/scriptable/blob/master/docs/Crawler.md
支持的语言 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"
}