Chrome tab explorer

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

Was ist Chrome tab explorer?

Chrome tab explorer ist eine Chrome-Erweiterung, die von https://sites.google.com/site/fujundu entwickelt wurde, und ihr Hauptmerkmal ist "Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.".

Erweiterungsscreenshots

screenshot
screenshot

Chrome tab explorer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chrome tab explorer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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".                    

Grundlegende Informationen zur Erweiterung

Name Chrome tab explorer Chrome tab explorer
ID cjfnaklodefmmoikdpdaagkhbjijlpif
Offizielle URL https://chromewebstore.google.com/detail/chrome-tab-explorer/cjfnaklodefmmoikdpdaagkhbjijlpif
Beschreibung Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.
Dateigröße 10.11 KB
Installationsanzahl 190
Aktuelle Version 0.4
Letztes Update 2017-12-22
Veröffentlichungsdatum 2017-12-22
Entwickler https://sites.google.com/site/fujundu
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/fjdu/tabExplorer
Unterstützte Sprachen 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"
            }
        }
    }
}