Reload All Tabs

This extension reloads all tabs in the active window.

Co to jest Reload All Tabs?

Reload All Tabs to rozszerzenie Chrome opracowane przez matthewlberg, a jego główną funkcją jest „This extension reloads all tabs in the active window.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Reload All Tabs

Pobierz pliki rozszerzeń Reload All 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Reload All Tabs Reload All Tabs
ID lgpdljdpanfecnpindkbnikegohoobci
Oficjalny URL https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci
Opis This extension reloads all tabs in the active window.
Rozmiar pliku 4.38 KB
Liczba instalacji 46,699
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-01-16
Data Publikacji 2014-01-16
Ocena 4.47/5 Łącznie 58 Oceny
Deweloper matthewlberg
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}