Tab Switcher

Switch tabs using ctrl+shift+z and ctrl+shift+x.

Co to jest Tab Switcher?

Tab Switcher to rozszerzenie Chrome opracowane przez Ian Ellison-Taylor, a jego główną funkcją jest „Switch tabs using ctrl+shift+z and ctrl+shift+x.”.

Pobierz plik CRX rozszerzenia Tab Switcher

Pobierz pliki rozszerzeń Tab Switcher 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

                        Allows you to switch tabs using Ctrl+Shift+Z and Ctrl+Shift+X                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab Switcher Tab Switcher
ID fkpmobfddeinmclggkjaodhijbaohpoe
Oficjalny URL https://chrome.google.com/webstore/detail/tab-switcher/fkpmobfddeinmclggkjaodhijbaohpoe
Opis Switch tabs using ctrl+shift+z and ctrl+shift+x.
Rozmiar pliku 3.07 KB
Liczba instalacji 34
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2013-02-21
Data Publikacji 2013-02-21
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Ian Ellison-Taylor
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Switcher",
    "version": "0.1",
    "description": "Switch tabs using ctrl+shift+z and ctrl+shift+x.",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "previous-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z"
            },
            "description": "Previous Tab"
        },
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Next Tab"
        }
    }
}