Quick Extension Reload

Reload extensions in development from the context menu.

Co to jest Quick Extension Reload?

Quick Extension Reload to rozszerzenie Chrome opracowane przez https://site.simonandrewbrown.co.uk, a jego główną funkcją jest „Reload extensions in development from the context menu.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Quick Extension Reload

Pobierz pliki rozszerzeń Quick Extension Reload w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Quick Extension Reload Quick Extension Reload
ID goeiakeofnlpkioeadcbocfifmgkidpb
Oficjalny URL https://chromewebstore.google.com/detail/quick-extension-reload/goeiakeofnlpkioeadcbocfifmgkidpb
Opis Reload extensions in development from the context menu.
Rozmiar pliku 22.71 KB
Liczba instalacji 772
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2013-03-10
Data Publikacji 2013-03-09
Ocena 4.00/5 Łącznie 15 Oceny
Deweloper https://site.simonandrewbrown.co.uk
Typ Płatności free
Strona Rozszerzenia http://www.isimonbrown.co.uk/contact/
Adres URL Strony Pomocy http://www.isimonbrown.co.uk/contact/
Obsługiwane Języki 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"
            }
        }
    }
}