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 |
| 官方網址 | 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"
}
}
}
} | |