Quick Extension Reload
Reload extensions in development from the context menu.
What is Quick Extension Reload?
Quick Extension Reload is a Chrome extension developed by https://site.simonandrewbrown.co.uk, and its main feature is "Reload extensions in development from the context menu.".
Extension Screenshots
Download Quick Extension Reload Extension CRX File
Download Quick Extension Reload extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Quick Extension Reload |
ID | goeiakeofnlpkioeadcbocfifmgkidpb |
Official URL | https://chromewebstore.google.com/detail/quick-extension-reload/goeiakeofnlpkioeadcbocfifmgkidpb |
Description | Reload extensions in development from the context menu. |
File Size | 22.71 KB |
Installation Count | 772 |
Current Version | 1.4 |
Last Updated | 2013-03-10 |
Publish Date | 2013-03-09 |
Rating | 4.00/5 Total 15 Ratings |
Developer | https://site.simonandrewbrown.co.uk |
Payment Type | free |
Extension Website | http://www.isimonbrown.co.uk/contact/ |
Help Page URL | http://www.isimonbrown.co.uk/contact/ |
Supported Languages | 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" } } } } |