Quick Extension Reload

Reload extensions in development from the context menu.

Vad är Quick Extension Reload?

Quick Extension Reload är en Chrome-tillägg utvecklad av https://site.simonandrewbrown.co.uk, och dess huvudfunktion är "Reload extensions in development from the context menu.".

Tilläggsskärmbilder

screenshot

Ladda ner Quick Extension Reload-förlängningens CRX-fil

Ladda ner Quick Extension Reload-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Quick Extension Reload Quick Extension Reload
ID goeiakeofnlpkioeadcbocfifmgkidpb
Officiell webbadress https://chromewebstore.google.com/detail/quick-extension-reload/goeiakeofnlpkioeadcbocfifmgkidpb
Beskrivning Reload extensions in development from the context menu.
Filstorlek 22.71 KB
Antal Installationer 772
Aktuell Version 1.4
Senast Uppdaterad 2013-03-10
Publiceringsdatum 2013-03-09
Betyg 4.00/5 Totalt 15 Betyg
Utvecklare https://site.simonandrewbrown.co.uk
Betalningssätt free
Tilläggswebbplats http://www.isimonbrown.co.uk/contact/
Hjälpsida URL http://www.isimonbrown.co.uk/contact/
Stödda Språk 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"
            }
        }
    }
}