Tabs Counter
Count the number of tabs that are open
Apa itu Tabs Counter?
Tabs Counter adalah ekstensi Chrome yang dikembangkan oleh Bill Miller, dan fitur utamanya adalah "Count the number of tabs that are open".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Tabs Counter
Unduh file ekstensi Tabs Counter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | kgdaeidiojbdgmnjnpmklilaodjlkbjp |
URL Resmi | https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp |
Deskripsi | Count the number of tabs that are open |
Ukuran File | 43.49 KB |
Jumlah Instalasi | 7,000 |
Versi Saat Ini | 0.1 |
Terakhir Diperbarui | 2014-07-09 |
Tanggal Publikasi | 2014-07-09 |
Penilaian | 1.50/5 Total 8 Penilaian |
Pengembang | Bill Miller |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |