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"
            ]
        }
    ]
}