Tab Cycler

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

Co je Tab Cycler?

Tab Cycler je rozšíření Chrome vyvinuté benl, a jeho hlavní funkcí je „Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Tab Cycler

Stáhněte si soubory rozšíření Tab Cycler 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í

                        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                    

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

Název Tab Cycler Tab Cycler
ID bognkjnmfbfjobpbmbnnhhojmikehonf
Oficiální URL https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf
Popis Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
Velikost souboru 5.02 KB
Počet instalací 58
Aktuální Verze 0.2
Poslední Aktualizace 2016-08-01
Datum Vydání 2016-07-31
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář benl
Typ Platby free
Podporované Jazyky 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."
        }
    }
}