tabswitcher

TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…

Apa itu tabswitcher?

tabswitcher adalah ekstensi Chrome yang dikembangkan oleh https://jhchabran.com, dan fitur utamanya adalah "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi tabswitcher

Unduh file ekstensi tabswitcher 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

                        TL;DR Remember Textmate's Command-T ? It's the same for chrome. 

Warning: shortcut has to be manually set in chrome's extension settings.  
Suggestion: use alt-space.                    

Informasi Dasar Ekstensi

Nama tabswitcher tabswitcher
ID gkdkligmcadfbagoeggeohelmgalchcn
URL Resmi https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn
Deskripsi TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
Ukuran File 375 KB
Jumlah Instalasi 22
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2015-09-29
Tanggal Publikasi 2015-09-29
Penilaian 4.50/5 Total 2 Penilaian
Pengembang https://jhchabran.com
Tipe Pembayaran free
Situs Ekstensi http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/
URL Halaman Bantuan https://github.com/jhchabran/tabswitcher
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "tabswitcher",
    "version": "1.0.2",
    "browser_action": {
        "default_title": "Show the popup",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "tabswitcher.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "tabswitcher.js",
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2
}