Chrome tab explorer

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

什么是Chrome tab explorer?

Chrome tab explorer是由https://sites.google.com/site/fujundu开发的Chrome扩展程序,该扩展的主要功能是“Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.”。

扩展截图

screenshot
screenshot

下载Chrome tab explorer扩展crx文件

下载Chrome tab explorer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Chrome tab explorer Chrome tab explorer
ID cjfnaklodefmmoikdpdaagkhbjijlpif
官方URL https://chromewebstore.google.com/detail/chrome-tab-explorer/cjfnaklodefmmoikdpdaagkhbjijlpif
简介 Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.
文件大小 10.11 KB
安装次数 190
当前版本 0.4
更新时间 2017-12-22
上架时间 2017-12-22
开发者 https://sites.google.com/site/fujundu
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/fjdu/tabExplorer
支持的语言 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"
            }
        }
    }
}