Reload tabs

Reload all of the current window's tabs

Co to jest Reload tabs?

Reload tabs to rozszerzenie Chrome opracowane przez msskmlrn, a jego główną funkcją jest „Reload all of the current window's tabs”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Reload tabs

Pobierz pliki rozszerzeń Reload tabs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Reload tabs Reload tabs
ID onncmmefekihehgnljddnkbbiplicomg
Oficjalny URL https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg
Opis Reload all of the current window's tabs
Rozmiar pliku 6.75 KB
Liczba instalacji 31
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-06-06
Data Publikacji 2014-06-06
Deweloper msskmlrn
Typ Płatności free
Adres URL Strony Pomocy https://github.com/msskmlrn/reload-tabs
Obsługiwane Języki 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"
    ]
}