Script Bucket
Store and run JavaScript files in the browser.
Wat is Script Bucket?
Script Bucket is een Chrome-extensie ontwikkeld door Tyler Vick, en de belangrijkste functie is "Store and run JavaScript files in the browser.".
Extensie Screenshots
Download het CRX-bestand van de extensie Script Bucket
Download Script Bucket-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Script Bucket |
ID | bnbhfjiddcmpfmdcijnlopfedpcjkpie |
Officiële URL | https://chromewebstore.google.com/detail/script-bucket/bnbhfjiddcmpfmdcijnlopfedpcjkpie |
Beschrijving | Store and run JavaScript files in the browser. |
Bestandsgrootte | 1.1 MB |
Aantal Installaties | 46 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2016-01-10 |
Publicatiedatum | 2016-01-10 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Tyler Vick |
Betalingswijze | free |
Extensiewebsite | https://github.com/tylerjvick/scriptbucket |
Help Pagina-URL | https://github.com/tylerjvick/scriptbucket/issues |
Ondersteunde Talen | 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 } |