Tab Cycler

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

Was ist Tab Cycler?

Tab Cycler ist eine Chrome-Erweiterung, die von benl entwickelt wurde, und ihr Hauptmerkmal ist "Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…".

Erweiterungsscreenshots

screenshot

Tab Cycler-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Cycler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Tab Cycler Tab Cycler
ID bognkjnmfbfjobpbmbnnhhojmikehonf
Offizielle URL https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf
Beschreibung Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
Dateigröße 5.02 KB
Installationsanzahl 58
Aktuelle Version 0.2
Letztes Update 2016-08-01
Veröffentlichungsdatum 2016-07-31
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler benl
Zahlungsart free
Unterstützte Sprachen 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."
        }
    }
}