Tab Renamer

Take control of your tabs

ما هو Tab Renamer؟

Tab Renamer هو إضافة Chrome تم تطويرها بواسطة Elon Z، والميزة الرئيسية لها هي "Take control of your tabs".

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

screenshot
screenshot
screenshot

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

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

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

                        This is a fork version of Tab Modifier with more features/bugfix.
1. [New Feature] Support unique rules by url,
2. [New Feature] Disable a rule temporarily,
3. [New Feature] Allow to hide right-click menu item.
4. [Bug Fix] Selector grammar not working when element is lazy-loaded.                    

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

الاسم Tab Renamer Tab Renamer
ID kpijejpdbpeaakidlcopnbjohbfimnod
عنوان URL الرسمي https://chromewebstore.google.com/detail/tab-renamer/kpijejpdbpeaakidlcopnbjohbfimnod
الوصف Take control of your tabs
حجم الملف 98.48 KB
عدد التثبيتات 238
النسخة الحالية 0.23.0
آخر تحديث 2021-02-28
تاريخ النشر 2021-02-27
تقييم 3.50/5 مجموع تقييمات 2
المطور Elon Z
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/imageslr/chrome-tab-modifier
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Renamer",
    "version": "0.23.0",
    "description": "Take control of your tabs",
    "homepage_url": "https:\/\/github.com\/imageslr\/chrome-tab-modifier",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon_48.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.google-analytics.com; object-src 'self'",
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "contextMenus",
        "alarms",
        "notifications"
    ]
}