Script Bucket
Store and run JavaScript files in the browser.
Cos'è Script Bucket?
Script Bucket è un'estensione di Chrome sviluppata da Tyler Vick, e la sua funzione principale è "Store and run JavaScript files in the browser.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Script Bucket
Scarica i file di estensione Script Bucket in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Script Bucket |
ID | bnbhfjiddcmpfmdcijnlopfedpcjkpie |
URL Ufficiale | https://chromewebstore.google.com/detail/script-bucket/bnbhfjiddcmpfmdcijnlopfedpcjkpie |
Descrizione | Store and run JavaScript files in the browser. |
Dimensione del File | 1.1 MB |
Conteggio Installazioni | 46 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2016-01-10 |
Data di Pubblicazione | 2016-01-10 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Tyler Vick |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/tylerjvick/scriptbucket |
URL della Pagina di Aiuto | https://github.com/tylerjvick/scriptbucket/issues |
Lingue Supportate | 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 } |