Dev extensions reload
Reload enabled development extensions
Dev extensions reloadとは何ですか?
Dev extensions reloadはMykhailo Onikiienkoによって開発されたChromeの拡張機能で、その主な機能は「Reload enabled development extensions」です。
拡張機能のスクリーンショット
Dev extensions reload拡張機能のCRXファイルをダウンロード
Dev extensions reload拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Extension for Extensions Developers.
Use shortcut (Alt-Z by default) or context menu on any tab to reload enabled unpacked extensions.
Pros:
- Quick reload with context menu or shortcut (Alt-Z by default but you can change. See Options page for instructions)
- Reload only enabled extensions
- If Options page is open also restart it
- Ability to reload active tab (see Options page). It useful for content script extensions development.
- Ability to turn off reload from context menu (see Options page)
Contras:
- It closes the background debugger window. No public API to reopen :(
Source code - https://github.com/onikienko/dev-extensions-reload/ 拡張機能の基本情報
| 名前 | |
| ID | bbanndmhbmgajamonlgnjnfdbifbnbdj |
| 公式URL | https://chromewebstore.google.com/detail/dev-extensions-reload/bbanndmhbmgajamonlgnjnfdbifbnbdj |
| 説明 | Reload enabled development extensions |
| ファイルサイズ | 14.59 KB |
| インストール数 | 332 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2015-04-27 |
| 公開日 | 2015-04-27 |
| 評価 | 4.91/5 合計 11 レビュー |
| 開発者 | Mykhailo Onikiienko |
| Eメール | [email protected] |
| 支払い方法 | free |
| ヘルプページのURL | https://github.com/onikienko/dev-extensions-reload/issues |
| プライバシーポリシーページのURL | https://onikienko.github.io/browser-extensions/privacy-policy |
| 対応言語 | en,ru,uk |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extName__",
"description": "__MSG_extDescr__",
"version": "1.1",
"manifest_version": 2,
"author": "Michael Onikienko",
"default_locale": "en",
"icons": {
"16": "img\/ext_icons\/16.png",
"48": "img\/ext_icons\/48.png",
"128": "img\/ext_icons\/128.png"
},
"background": {
"scripts": [
"js\/storage.js",
"js\/background.js"
],
"persistent": false
},
"commands": {
"reload_dev_extensions": {
"description": "__MSG_extDescr__",
"suggested_key": {
"default": "Alt+Z"
}
}
},
"options_page": "options.html",
"permissions": [
"management",
"contextMenus",
"storage",
"tabs"
]
} | |