Reload All Tabs

This extension reloads all tabs in the active window.

Was ist Reload All Tabs?

Reload All Tabs ist eine Chrome-Erweiterung, die von matthewlberg entwickelt wurde, und ihr Hauptmerkmal ist "This extension reloads all tabs in the active window.".

Erweiterungsscreenshots

screenshot

Reload All Tabs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Reload All Tabs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Reload All Tabs Reload All Tabs
ID lgpdljdpanfecnpindkbnikegohoobci
Offizielle URL https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci
Beschreibung This extension reloads all tabs in the active window.
Dateigröße 4.38 KB
Installationsanzahl 46,699
Aktuelle Version 1.0
Letztes Update 2014-01-16
Veröffentlichungsdatum 2014-01-16
Bewertung 4.47/5 Insgesamt 58 Bewertungen
Entwickler matthewlberg
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}