Reload tabs

Reload all of the current window's tabs

Co je Reload tabs?

Reload tabs je rozšíření Chrome vyvinuté msskmlrn, a jeho hlavní funkcí je „Reload all of the current window's tabs“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Reload tabs

Stáhněte si soubory rozšíření Reload tabs ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Reload tabs Reload tabs
ID onncmmefekihehgnljddnkbbiplicomg
Oficiální URL https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg
Popis Reload all of the current window's tabs
Velikost souboru 6.75 KB
Počet instalací 31
Aktuální Verze 1.0
Poslední Aktualizace 2014-06-06
Datum Vydání 2014-06-06
Vývojář msskmlrn
Typ Platby free
URL Stránky Nápovědy https://github.com/msskmlrn/reload-tabs
Podporované Jazyky 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"
    ]
}