Script Bucket

Store and run JavaScript files in the browser.

什么是Script Bucket?

Script Bucket是由Tyler Vick开发的Chrome扩展程序,该扩展的主要功能是“Store and run JavaScript files in the browser.”。

扩展截图

screenshot
screenshot
screenshot

下载Script Bucket扩展crx文件

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

扩展使用说明

                        Script Bucket allows you to upload files to your browser's storage and insert them into any page. Once uploaded, click on any file listed to automatically add a link in the current page.                    

扩展基本信息

名称 Script Bucket Script Bucket
ID bnbhfjiddcmpfmdcijnlopfedpcjkpie
官方URL https://chromewebstore.google.com/detail/script-bucket/bnbhfjiddcmpfmdcijnlopfedpcjkpie
简介 Store and run JavaScript files in the browser.
文件大小 1.1 MB
安装次数 46
当前版本 0.0.1
更新时间 2016-01-10
上架时间 2016-01-10
评分 5.00/5 共1次评分
开发者 Tyler Vick
付费类型 free
扩展官网 https://github.com/tylerjvick/scriptbucket
帮助页面URL https://github.com/tylerjvick/scriptbucket/issues
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Script Bucket",
    "author": "Tyler Vick",
    "description": "Store and run JavaScript files in the browser.",
    "version": "0.0.1",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "unlimitedStorage"
    ],
    "browser_action": {
        "default_popup": "browser_action\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inject\/content.js"
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2
}