Reload All Tabs

This extension reloads all tabs in the active window.

Cos'è Reload All Tabs?

Reload All Tabs è un'estensione di Chrome sviluppata da matthewlberg, e la sua funzione principale è "This extension reloads all tabs in the active window.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Reload All Tabs

Scarica i file di estensione Reload All Tabs 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

                        This extension allows you to refresh all tabs with a simple click of a button. You can also use the keyboard shortcut Alt + Shift + R to reload all tabs.                    

Informazioni di Base sull'Estensione

Nome Reload All Tabs Reload All Tabs
ID lgpdljdpanfecnpindkbnikegohoobci
URL Ufficiale https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci
Descrizione This extension reloads all tabs in the active window.
Dimensione del File 4.38 KB
Conteggio Installazioni 46,699
Versione Corrente 1.0
Ultimo Aggiornamento 2014-01-16
Data di Pubblicazione 2014-01-16
Valutazione 4.47/5 Totale 58 Valutazioni
Sviluppatore matthewlberg
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload All Tabs",
    "description": "This extension reloads all tabs in the active window.",
    "version": "1.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+R"
            },
            "description": "Reload all tabs"
        }
    },
    "permissions": [
        "tabs",
        "background"
    ]
}