Quick Extension Reload
Reload extensions in development from the context menu.
什么是Quick Extension Reload?
Quick Extension Reload是由https://site.simonandrewbrown.co.uk开发的Chrome扩展程序,该扩展的主要功能是“Reload extensions in development from the context menu.”。
扩展截图
下载Quick Extension Reload扩展crx文件
下载Quick Extension Reload扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
When developing extensions, it can be a pain to go to your extensions tab, find the extension you're working on and click "reload" every time you make a change. This extension allows you to reload your extensions from the context menu.
Just right-click on any page to reload all your extensions in development, or use the default shortcut key, Alt+R.
The icon was based on icons from the Tango project. The small icon was created by Yusuke Kamiyamane. 扩展基本信息
| 名称 | |
| ID | goeiakeofnlpkioeadcbocfifmgkidpb |
| 官方URL | https://chromewebstore.google.com/detail/quick-extension-reload/goeiakeofnlpkioeadcbocfifmgkidpb |
| 简介 | Reload extensions in development from the context menu. |
| 文件大小 | 22.71 KB |
| 安装次数 | 772 |
| 当前版本 | 1.4 |
| 更新时间 | 2013-03-10 |
| 上架时间 | 2013-03-09 |
| 评分 | 4.00/5 共15次评分 |
| 开发者 | https://site.simonandrewbrown.co.uk |
| 付费类型 | free |
| 扩展官网 | http://www.isimonbrown.co.uk/contact/ |
| 帮助页面URL | http://www.isimonbrown.co.uk/contact/ |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Quick Extension Reload",
"description": "Reload extensions in development from the context menu.",
"version": "1.4",
"background": {
"scripts": [
"background.js"
]
},
"manifest_version": 2,
"permissions": [
"management",
"contextMenus"
],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"minimum_chrome_version": "14.0",
"commands": {
"reload": {
"description": "Reload all extensions in development.",
"suggested_key": {
"default": "Alt+R"
}
}
}
} | |