Script Bucket
Store and run JavaScript files in the browser.
Apa itu Script Bucket?
Script Bucket adalah ekstensi Chrome yang dikembangkan oleh Tyler Vick, dan fitur utamanya adalah "Store and run JavaScript files in the browser.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Script Bucket
Unduh file ekstensi Script Bucket dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Script Bucket |
ID | bnbhfjiddcmpfmdcijnlopfedpcjkpie |
URL Resmi | https://chromewebstore.google.com/detail/script-bucket/bnbhfjiddcmpfmdcijnlopfedpcjkpie |
Deskripsi | Store and run JavaScript files in the browser. |
Ukuran File | 1.1 MB |
Jumlah Instalasi | 46 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2016-01-10 |
Tanggal Publikasi | 2016-01-10 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Tyler Vick |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/tylerjvick/scriptbucket |
URL Halaman Bantuan | https://github.com/tylerjvick/scriptbucket/issues |
Bahasa yang Didukung | 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 } |