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 |
| 电子邮箱 | [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"
]
} | |