Tabs count

Counts the number of open browser tabs

Apa itu Tabs count?

Tabs count adalah ekstensi Chrome yang dikembangkan oleh Kanban Labs, dan fitur utamanya adalah "Counts the number of open browser tabs".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Tabs count

Unduh file ekstensi Tabs count 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

                        A very simple extension that gives you the number of currently opened tabs and windows.
Check the source code yourself! https://github.com/kanban-labs/tabs-count                    

Informasi Dasar Ekstensi

Nama Tabs count Tabs count
ID iaejhlgcnijhbdilicmoinmiofldhpke
URL Resmi https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke
Deskripsi Counts the number of open browser tabs
Ukuran File 6.83 KB
Jumlah Instalasi 168
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2022-09-15
Tanggal Publikasi 2022-09-14
Penilaian 3.75/5 Total 4 Penilaian
Pengembang Kanban Labs
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://kanban.ee
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs count",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "Counts the number of open browser tabs",
    "action": {
        "default_title": "Tab count",
        "default_icon": "icons\/icon-48x48.png"
    },
    "permissions": [
        "notifications"
    ],
    "icons": {
        "48": "icons\/icon-48x48.png",
        "144": "icons\/icon-144x144.png"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self';"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}