Tab Cycler

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

What is Tab Cycler?

Tab Cycler is a Chrome extension developed by benl, and its main feature is "Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…".

Extension Screenshots

screenshot

Download Tab Cycler Extension CRX File

Download Tab Cycler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Tab Cycler Tab Cycler
ID bognkjnmfbfjobpbmbnnhhojmikehonf
Official URL https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf
Description Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
File Size 5.02 KB
Installation Count 58
Current Version 0.2
Last Updated 2016-08-01
Publish Date 2016-07-31
Rating 5.00/5 Total 2 Ratings
Developer benl
Payment Type free
Supported Languages 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."
        }
    }
}