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.”。
擴展截圖
下載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 |
ID | bnbhfjiddcmpfmdcijnlopfedpcjkpie |
官方網址 | 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 } |