Script Bucket
Store and run JavaScript files in the browser.
What is Script Bucket?
Script Bucket is a Chrome extension developed by Tyler Vick, and its main feature is "Store and run JavaScript files in the browser.".
Extension Screenshots
Download Script Bucket Extension CRX File
Download Script Bucket extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Script Bucket |
ID | bnbhfjiddcmpfmdcijnlopfedpcjkpie |
Official URL | https://chromewebstore.google.com/detail/script-bucket/bnbhfjiddcmpfmdcijnlopfedpcjkpie |
Description | Store and run JavaScript files in the browser. |
File Size | 1.1 MB |
Installation Count | 46 |
Current Version | 0.0.1 |
Last Updated | 2016-01-10 |
Publish Date | 2016-01-10 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Tyler Vick |
Payment Type | free |
Extension Website | https://github.com/tylerjvick/scriptbucket |
Help Page URL | https://github.com/tylerjvick/scriptbucket/issues |
Supported Languages | 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 } |