Tab search

Search your tabs and switch using the keyboard

Apa itu Tab search?

Tab search adalah ekstensi Chrome yang dikembangkan oleh robert.anderberg, dan fitur utamanya adalah "Search your tabs and switch using the keyboard".

Unduh Berkas CRX Ekstensi Tab search

Unduh file ekstensi Tab search 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

                        Hit Ctrl-Y to search all titles, urls and content of all open tabs, select a tab with up/down arrow keys, and hit enter to switch.

What's New?
-----------


If you're switching to a tab in another window, bring that window to the front.                    

Informasi Dasar Ekstensi

Nama Tab search Tab search
ID kackhdbfodjglfgdmjkjmjmoohbgcagf
URL Resmi https://chrome.google.com/webstore/detail/tab-search/kackhdbfodjglfgdmjkjmjmoohbgcagf
Deskripsi Search your tabs and switch using the keyboard
Ukuran File 138 KB
Jumlah Instalasi 91
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2014-01-28
Tanggal Publikasi 2014-01-28
Penilaian 5.00/5 Total 1 Penilaian
Pengembang robert.anderberg
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab search",
    "description": "Search your tabs and switch using the keyboard",
    "version": "1.0.2",
    "permissions": [
        "tabs",
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Y"
            }
        }
    }
}