Tabs Counter

Count the number of tabs that are open

Vad är Tabs Counter?

Tabs Counter är en Chrome-tillägg utvecklad av Bill Miller, och dess huvudfunktion är "Count the number of tabs that are open".

Tilläggsskärmbilder

screenshot

Ladda ner Tabs Counter-förlängningens CRX-fil

Ladda ner Tabs Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Tabs Counter Tabs Counter
ID kgdaeidiojbdgmnjnpmklilaodjlkbjp
Officiell webbadress https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp
Beskrivning Count the number of tabs that are open
Filstorlek 43.49 KB
Antal Installationer 7,000
Aktuell Version 0.1
Senast Uppdaterad 2014-07-09
Publiceringsdatum 2014-07-09
Betyg 1.50/5 Totalt 8 Betyg
Utvecklare Bill Miller
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}