Extensions Reloader
Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions"
Extensions Reloaderとは何ですか?
Extensions Reloaderはhttps://www.wzmn.netによって開発されたChromeの拡張機能で、その主な機能は「Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions"」です。
拡張機能のスクリーンショット
Extensions Reloader拡張機能のCRXファイルをダウンロード
Extensions Reloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
If you've ever developed a Google Chrome™ extension, you might have wanted to automate the process of reloading your unpacked extension without the need of going through the extensions page. "Extensions Reloader" allows you to reload all unpacked extensions using 3 ways: 1- The extension's toolbar button 2- Browsing to "http://reload.extensions" 3- Keyboard shortcut The toolbar icon will reload unpacked extensions using a single click. The "reload by browsing" is intended for automating the reload process using "post build" scripts - just browse to "http://reload.extensions", and chrome will open with freshly reloaded extensions. Whenever a refresh is executed, a green "OK" badge will appear on Extensions Reloader's toolbar icon. ** This extension is open-source and available on GitHub: https://github.com/arikw/chrome-extensions-reloader
拡張機能の基本情報
名前 | Extensions Reloader |
ID | fimgfedafeadlieiabdeeaodndnlbhid |
公式URL | https://chromewebstore.google.com/detail/extensions-reloader/fimgfedafeadlieiabdeeaodndnlbhid |
説明 | Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions" |
ファイルサイズ | 15.11 KB |
インストール数 | 14,847 |
現在のバージョン | 1.15 |
最終更新日 | 2021-07-26 |
公開日 | 2016-02-29 |
評価 | 4.29/5 合計 126 レビュー |
開発者 | https://www.wzmn.net |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/arikw/chrome-extensions-reloader |
ヘルプページのURL | https://github.com/arikw/chrome-extensions-reloader |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Extensions Reloader", "manifest_version": 2, "version": "1.15", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "page": "background.html" }, "commands": { "reload": { "description": "Reload all extensions in development", "suggested_key": { "default": "Alt+Shift+R" } } }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "tabs", "management", "storage", "webRequest", "webRequestBlocking", "http:\/\/reload.extensions\/" ], "browser_action": { "default_icon": "icon19.png", "default_title": "Reload Extensions" }, "description": "Reload all unpacked extensions using the extension's toolbar button or by browsing to \"http:\/\/reload.extensions\"" } |