Quick Extension Reload

Reload extensions in development from the context menu.

Wat is Quick Extension Reload?

Quick Extension Reload is een Chrome-extensie ontwikkeld door https://site.simonandrewbrown.co.uk, en de belangrijkste functie is "Reload extensions in development from the context menu.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Quick Extension Reload

Download Quick Extension Reload-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Quick Extension Reload Quick Extension Reload
ID goeiakeofnlpkioeadcbocfifmgkidpb
Officiële URL https://chromewebstore.google.com/detail/quick-extension-reload/goeiakeofnlpkioeadcbocfifmgkidpb
Beschrijving Reload extensions in development from the context menu.
Bestandsgrootte 22.71 KB
Aantal Installaties 772
Huidige Versie 1.4
Laatst Bijgewerkt 2013-03-10
Publicatiedatum 2013-03-09
Beoordeling 4.00/5 Totaal 15 Beoordelingen
Ontwikkelaar https://site.simonandrewbrown.co.uk
Betalingswijze free
Extensiewebsite http://www.isimonbrown.co.uk/contact/
Help Pagina-URL http://www.isimonbrown.co.uk/contact/
Ondersteunde Talen 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"
            }
        }
    }
}