Tabs Counter
Count the number of tabs that are open
Wat is Tabs Counter?
Tabs Counter is een Chrome-extensie ontwikkeld door Bill Miller, en de belangrijkste functie is "Count the number of tabs that are open".
Extensie Screenshots
Download het CRX-bestand van de extensie Tabs Counter
Download Tabs Counter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | kgdaeidiojbdgmnjnpmklilaodjlkbjp |
Officiële URL | https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp |
Beschrijving | Count the number of tabs that are open |
Bestandsgrootte | 43.49 KB |
Aantal Installaties | 7,000 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2014-07-09 |
Publicatiedatum | 2014-07-09 |
Beoordeling | 1.50/5 Totaal 8 Beoordelingen |
Ontwikkelaar | Bill Miller |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |