Tab Cycler

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

Apa itu Tab Cycler?

Tab Cycler adalah ekstensi Chrome yang dikembangkan oleh benl, dan fitur utamanya adalah "Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Tab Cycler

Unduh file ekstensi Tab Cycler dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Tab Cycler Tab Cycler
ID bognkjnmfbfjobpbmbnnhhojmikehonf
URL Resmi https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf
Deskripsi Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
Ukuran File 5.02 KB
Jumlah Instalasi 58
Versi Saat Ini 0.2
Terakhir Diperbarui 2016-08-01
Tanggal Publikasi 2016-07-31
Penilaian 5.00/5 Total 2 Penilaian
Pengembang benl
Tipe Pembayaran free
Bahasa yang Didukung 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."
        }
    }
}