Dev extensions reload

Reload enabled development extensions

Cos'è Dev extensions reload?

Dev extensions reload è un'estensione di Chrome sviluppata da Mykhailo Onikiienko, e la sua funzione principale è "Reload enabled development extensions".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Dev extensions reload

Scarica i file di estensione Dev extensions 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

                        Extension for Extensions Developers.

Use shortcut (Alt-Z by default) or context menu on any tab to reload enabled unpacked extensions.

Pros:

- Quick reload with context menu or shortcut (Alt-Z by default but you can change.  See Options page for instructions)
- Reload only enabled extensions
- If Options page is open also restart it
- Ability to reload active tab (see Options page). It useful for content script extensions development.
- Ability to turn off reload from context menu (see Options page)

Contras:

- It closes the background debugger window. No public API to reopen :(

Source code - https://github.com/onikienko/dev-extensions-reload/                    

Informazioni di Base sull'Estensione

Nome Dev extensions reload Dev extensions reload
ID bbanndmhbmgajamonlgnjnfdbifbnbdj
URL Ufficiale https://chromewebstore.google.com/detail/dev-extensions-reload/bbanndmhbmgajamonlgnjnfdbifbnbdj
Descrizione Reload enabled development extensions
Dimensione del File 14.59 KB
Conteggio Installazioni 332
Versione Corrente 1.1
Ultimo Aggiornamento 2015-04-27
Data di Pubblicazione 2015-04-27
Valutazione 4.91/5 Totale 11 Valutazioni
Sviluppatore Mykhailo Onikiienko
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/onikienko/dev-extensions-reload/issues
URL della Pagina della Politica sulla Privacy https://onikienko.github.io/browser-extensions/privacy-policy
Lingue Supportate en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescr__",
    "version": "1.1",
    "manifest_version": 2,
    "author": "Michael Onikienko",
    "default_locale": "en",
    "icons": {
        "16": "img\/ext_icons\/16.png",
        "48": "img\/ext_icons\/48.png",
        "128": "img\/ext_icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/storage.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "reload_dev_extensions": {
            "description": "__MSG_extDescr__",
            "suggested_key": {
                "default": "Alt+Z"
            }
        }
    },
    "options_page": "options.html",
    "permissions": [
        "management",
        "contextMenus",
        "storage",
        "tabs"
    ]
}