Tabs Counter

A simple extension for displaying the tab number next to the its title.

ما هو Tabs Counter؟

Tabs Counter هو إضافة Chrome تم تطويرها بواسطة poctek5، والميزة الرئيسية لها هي "A simple extension for displaying the tab number next to the its title.".

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

screenshot

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

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

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

                        A simple extension for displaying the tab number next to the its title.                    

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

الاسم Tabs Counter Tabs Counter
ID fkgbbcpdghmahjidddepeighkcdlihmp
عنوان URL الرسمي https://chromewebstore.google.com/detail/tabs-counter/fkgbbcpdghmahjidddepeighkcdlihmp
الوصف A simple extension for displaying the tab number next to the its title.
حجم الملف 3.79 KB
عدد التثبيتات 60
النسخة الحالية 0.4
آخر تحديث 2016-10-19
تاريخ النشر 2016-10-18
تقييم 3.40/5 مجموع تقييمات 5
المطور poctek5
نوع الدفع free
موقع الإضافة https://github.com/poctek/tabs-counter
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tabs Counter",
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "file:\/\/*\/"
    ],
    "version": "0.4",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}