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
官方網址 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"
        ]
    }
}