Tabs count

Counts the number of open browser tabs

ما هو Tabs count؟

Tabs count هو إضافة Chrome تم تطويرها بواسطة Kanban Labs، والميزة الرئيسية لها هي "Counts the number of open browser tabs".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Tabs count

قم بتنزيل ملفات الامتداد Tabs count بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Tabs count Tabs count
ID iaejhlgcnijhbdilicmoinmiofldhpke
عنوان URL الرسمي https://chromewebstore.google.com/detail/tabs-count/iaejhlgcnijhbdilicmoinmiofldhpke
الوصف Counts the number of open browser tabs
حجم الملف 6.83 KB
عدد التثبيتات 168
النسخة الحالية 1.0.1
آخر تحديث 2022-09-15
تاريخ النشر 2022-09-14
تقييم 3.75/5 مجموع تقييمات 4
المطور Kanban Labs
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://kanban.ee
اللغات المدعومة 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"
    }
}