Chrome tab explorer

Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.

Apa itu Chrome tab explorer?

Chrome tab explorer adalah ekstensi Chrome yang dikembangkan oleh https://sites.google.com/site/fujundu, dan fitur utamanya adalah "Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Chrome tab explorer

Unduh file ekstensi Chrome tab explorer 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

                        Having too many tabs and windows opened in your Chrome browser and having a hard time to keep track of which is which?

This extension lets you search through the tabs using keywords in the title and url of the page.  It also shows tab count.

"Bookmark all" will bookmark all tabs in a directory under "Other Bookmarks" of your bookmark folder.

It can be called out by "Alt + T".                    

Informasi Dasar Ekstensi

Nama Chrome tab explorer Chrome tab explorer
ID cjfnaklodefmmoikdpdaagkhbjijlpif
URL Resmi https://chromewebstore.google.com/detail/chrome-tab-explorer/cjfnaklodefmmoikdpdaagkhbjijlpif
Deskripsi Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.
Ukuran File 10.11 KB
Jumlah Instalasi 190
Versi Saat Ini 0.4
Terakhir Diperbarui 2017-12-22
Tanggal Publikasi 2017-12-22
Pengembang https://sites.google.com/site/fujundu
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/fjdu/tabExplorer
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome tab explorer",
    "short_name": "Tab explorer",
    "description": "Navigate through the tabs by searching keywords in the page title or url.  Also shows the tab count.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Find tabs by searching keywords in the title or url.  Shortcut: Alt+T."
    },
    "permissions": [
        "tabs",
        "storage",
        "bookmarks",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+T",
                "mac": "Alt+T",
                "chromeos": "Alt+T",
                "linux": "Alt+T"
            }
        }
    }
}