Tabs Counter

Count the number of tabs that are open

什么是Tabs Counter?

Tabs Counter是由Bill Miller开发的Chrome扩展程序,该扩展的主要功能是“Count the number of tabs that are open”。

扩展截图

screenshot

下载Tabs Counter扩展crx文件

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

扩展使用说明

                        If your curious as to how many browser tabs are open, just select "How many tabs?" from the context menu and all will be revealed                    

扩展基本信息

名称 Tabs Counter Tabs Counter
ID kgdaeidiojbdgmnjnpmklilaodjlkbjp
官方URL https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp
简介 Count the number of tabs that are open
文件大小 43.49 KB
安装次数 7,000
当前版本 0.1
更新时间 2014-07-09
上架时间 2014-07-09
评分 1.50/5 共8次评分
开发者 Bill Miller
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs Counter",
    "description": "Count the number of tabs that are open",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "jquery.bpopup.min.js",
                "script.js"
            ]
        }
    ]
}