Script Bucket
Store and run JavaScript files in the browser.
Qu'est-ce que Script Bucket ?
Script Bucket est une extension Chrome développée par Tyler Vick, et sa fonction principale est "Store and run JavaScript files in the browser.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Script Bucket
Téléchargez les fichiers d'extension Script Bucket au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Script Bucket |
ID | bnbhfjiddcmpfmdcijnlopfedpcjkpie |
URL Officiel | https://chromewebstore.google.com/detail/script-bucket/bnbhfjiddcmpfmdcijnlopfedpcjkpie |
Description | Store and run JavaScript files in the browser. |
Taille du Fichier | 1.1 MB |
Nombre d'Installations | 46 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2016-01-10 |
Date de Publication | 2016-01-10 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Tyler Vick |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/tylerjvick/scriptbucket |
URL de la Page d'Aide | https://github.com/tylerjvick/scriptbucket/issues |
Langues Prises en Charge | 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 } |