Tabco - Search between open tabs

Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.

什么是Tabco - Search between open tabs?

Tabco - Search between open tabs是由ChromeStar - Tab Guru开发的Chrome扩展程序,该扩展的主要功能是“Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.”。

扩展截图

screenshot
screenshot

下载Tabco - Search between open tabs扩展crx文件

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

扩展使用说明

                        How many tabs on your Chrome is open right now? 

Mac: ⌘ + Shift + L Windows: Mac: Ctrl+Shift+L

Tabco is valuable for those who love multitasking with a lot of open tab in any particular time, This Simple chrome tool will help you to search between tabs and switch. 

Features
Use Hot key to search between tabs
Search with Website name                    

扩展基本信息

名称 Tabco - Search between open tabs Tabco - Search between open tabs
ID gdlfpemlflmabfaaldihflcbokikbcgk
官方URL https://chromewebstore.google.com/detail/tabco-search-between-open/gdlfpemlflmabfaaldihflcbokikbcgk
简介 Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.
文件大小 161 KB
安装次数 40
当前版本 0.7.4
更新时间 2019-07-24
上架时间 2019-07-19
评分 4.00/5 共4次评分
开发者 ChromeStar - Tab Guru
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabco - Search between open tabs",
    "description": "Search between tabs, find duplicate easily. Tabco is a simple tool to help you save time.",
    "version": "0.7.4",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "browser_action": {
        "default_icon": "browser_action_icon.png",
        "default_title": "Tabco - Comand+shift+l or ctrl+shift+l"
    },
    "icons": {
        "48": "browser_action_icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "showTabSwitcher": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Toggle feature"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "assets\/js\/sanitize-html.js",
                "assets\/js\/jquery.js",
                "assets\/js\/keymaster.js",
                "contentScript.js"
            ],
            "css": [
                "assets\/css\/tab-switcher.css"
            ]
        }
    ],
    "manifest_version": 2
}