Quick Extension Reload

Reload extensions in development from the context menu.

Cos'è Quick Extension Reload?

Quick Extension Reload è un'estensione di Chrome sviluppata da https://site.simonandrewbrown.co.uk, e la sua funzione principale è "Reload extensions in development from the context menu.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Quick Extension Reload

Scarica i file di estensione Quick Extension Reload in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Quick Extension Reload Quick Extension Reload
ID goeiakeofnlpkioeadcbocfifmgkidpb
URL Ufficiale https://chromewebstore.google.com/detail/quick-extension-reload/goeiakeofnlpkioeadcbocfifmgkidpb
Descrizione Reload extensions in development from the context menu.
Dimensione del File 22.71 KB
Conteggio Installazioni 772
Versione Corrente 1.4
Ultimo Aggiornamento 2013-03-10
Data di Pubblicazione 2013-03-09
Valutazione 4.00/5 Totale 15 Valutazioni
Sviluppatore https://site.simonandrewbrown.co.uk
Tipo di Pagamento free
Sito Web dell'Estensione http://www.isimonbrown.co.uk/contact/
URL della Pagina di Aiuto http://www.isimonbrown.co.uk/contact/
Lingue Supportate 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"
            }
        }
    }
}