Tab Cycler

Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…

Co to jest Tab Cycler?

Tab Cycler to rozszerzenie Chrome opracowane przez benl, a jego główną funkcją jest „Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Tab Cycler

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

                        Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs.

Defaults:

Alt-Shift-Left Arrow -> Cycle tab left.
Alt-Shift-Right Arrow -> Cycle tab right.

To customize shortcuts: Settings -> Extensions -> Keyboard shortcuts (bottom of page)

Code hosted at: https://github.com/benletchford/chrome-tab-cycler                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab Cycler Tab Cycler
ID bognkjnmfbfjobpbmbnnhhojmikehonf
Oficjalny URL https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf
Opis Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
Rozmiar pliku 5.02 KB
Liczba instalacji 58
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2016-08-01
Data Publikacji 2016-07-31
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper benl
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Cycler",
    "version": "0.2",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "left": {
            "suggested_key": {
                "default": "Alt+Shift+Left"
            },
            "description": "Cycle to left tab."
        },
        "right": {
            "suggested_key": {
                "default": "Alt+Shift+Right"
            },
            "description": "Cycle to right tab."
        }
    }
}