Tabs Counter
Count the number of tabs that are open
Was ist Tabs Counter?
Tabs Counter ist eine Chrome-Erweiterung, die von Bill Miller entwickelt wurde, und ihr Hauptmerkmal ist "Count the number of tabs that are open".
Erweiterungsscreenshots
Tabs Counter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tabs Counter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | kgdaeidiojbdgmnjnpmklilaodjlkbjp |
Offizielle URL | https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp |
Beschreibung | Count the number of tabs that are open |
Dateigröße | 43.49 KB |
Installationsanzahl | 7,000 |
Aktuelle Version | 0.1 |
Letztes Update | 2014-07-09 |
Veröffentlichungsdatum | 2014-07-09 |
Bewertung | 1.50/5 Insgesamt 8 Bewertungen |
Entwickler | Bill Miller |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |