Reload tabs

Reload all of the current window's tabs

Was ist Reload tabs?

Reload tabs ist eine Chrome-Erweiterung, die von msskmlrn entwickelt wurde, und ihr Hauptmerkmal ist "Reload all of the current window's tabs".

Erweiterungsscreenshots

screenshot

Reload tabs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Reload 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

                        Reload all of the current window's tabs by pressing the icon or using the Ctrl+Shift+E shortcut.

You can change the default shortcut to something else by opening the extensions page (chrome://extensions/) and clicking the keyboard shortcuts link in the bottom right corner of the page. From there, find the Reload tabs extension and enter a keyboard shortcut of your choosing.

The source code can be found at https://github.com/msskmlrn/reload-tabs.                    

Grundlegende Informationen zur Erweiterung

Name Reload tabs Reload tabs
ID onncmmefekihehgnljddnkbbiplicomg
Offizielle URL https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg
Beschreibung Reload all of the current window's tabs
Dateigröße 6.75 KB
Installationsanzahl 31
Aktuelle Version 1.0
Letztes Update 2014-06-06
Veröffentlichungsdatum 2014-06-06
Entwickler msskmlrn
Zahlungsart free
Hilfeseite URL https://github.com/msskmlrn/reload-tabs
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload tabs",
    "short_name": "Reload tabs",
    "version": "1.0",
    "description": "Reload all of the current window's tabs",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "reload.js"
        ],
        "persistent": false
    },
    "commands": {
        "reload-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Reload tabs"
        }
    },
    "permissions": [
        "tabs"
    ]
}