Tab Namer

Renames tabs to: " ".

ما هو Tab Namer؟

Tab Namer هو إضافة Chrome تم تطويرها بواسطة James Stout، والميزة الرئيسية لها هي "Renames tabs to: " ".".

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

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

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

                        Renames all tabs to follow a standard format: "  ". It is simple and reliable, but if you are looking for something configurable then this is not the extension for you.                    

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

الاسم Tab Namer Tab Namer
ID mhlkchmeabcgmaedklpajbokfaapcgoo
عنوان URL الرسمي https://chromewebstore.google.com/detail/tab-namer/mhlkchmeabcgmaedklpajbokfaapcgoo
الوصف Renames tabs to: " ".
حجم الملف 4.84 KB
عدد التثبيتات 31
النسخة الحالية 1.2
آخر تحديث 2018-05-26
تاريخ النشر 2018-05-26
تقييم 3.67/5 مجموع تقييمات 3
المطور James Stout
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Namer",
    "version": "1.2",
    "description": "Renames tabs to: \"  \".",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ]
}