Script Bucket
Store and run JavaScript files in the browser.
Script Bucketとは何ですか?
Script BucketはTyler Vickによって開発されたChromeの拡張機能で、その主な機能は「Store and run JavaScript files in the browser.」です。
拡張機能のスクリーンショット
Script Bucket拡張機能のCRXファイルをダウンロード
Script Bucket拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | bnbhfjiddcmpfmdcijnlopfedpcjkpie |
| 公式URL | https://chromewebstore.google.com/detail/script-bucket/bnbhfjiddcmpfmdcijnlopfedpcjkpie |
| 説明 | Store and run JavaScript files in the browser. |
| ファイルサイズ | 1.1 MB |
| インストール数 | 46 |
| 現在のバージョン | 0.0.1 |
| 最終更新日 | 2016-01-10 |
| 公開日 | 2016-01-10 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Tyler Vick |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/tylerjvick/scriptbucket |
| ヘルプページのURL | https://github.com/tylerjvick/scriptbucket/issues |
| 対応言語 | 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
} | |