Tabs Counter

A simple extension for displaying the tab number next to the its title.

什么是Tabs Counter?

Tabs Counter是由poctek5开发的Chrome扩展程序,该扩展的主要功能是“A simple extension for displaying the tab number next to the its title.”。

扩展截图

screenshot

下载Tabs Counter扩展crx文件

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

扩展使用说明

                        A simple extension for displaying the tab number next to the its title.                    

扩展基本信息

名称 Tabs Counter Tabs Counter
ID fkgbbcpdghmahjidddepeighkcdlihmp
官方URL https://chromewebstore.google.com/detail/tabs-counter/fkgbbcpdghmahjidddepeighkcdlihmp
简介 A simple extension for displaying the tab number next to the its title.
文件大小 3.79 KB
安装次数 60
当前版本 0.4
更新时间 2016-10-19
上架时间 2016-10-18
评分 3.40/5 共5次评分
开发者 poctek5
付费类型 free
扩展官网 https://github.com/poctek/tabs-counter
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tabs Counter",
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "file:\/\/*\/"
    ],
    "version": "0.4",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}