Tab Label

This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…

ما هو Tab Label؟

Tab Label هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Tab Label

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

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

                        This extension allow you to rename tab title. 

This is very useful extension especially in case you have multiple tabs opened with similar title. So you can make them more distinct by changing their title.                    

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

الاسم Tab Label Tab Label
ID jenllplbncahmaikpkppcikmfadialdk
عنوان URL الرسمي https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk
الوصف This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
حجم الملف 7.58 KB
عدد التثبيتات 252
النسخة الحالية 0.0.1
آخر تحديث 2020-04-28
تاريخ النشر 2020-04-25
تقييم 2.14/5 مجموع تقييمات 7
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Label",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}