Tab Colorizer | Customize your tab's icon!

Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.

ما هو Tab Colorizer | Customize your tab's icon!؟

Tab Colorizer | Customize your tab's icon! هو إضافة Chrome تم تطويرها بواسطة https://tabcolorizer.io، والميزة الرئيسية لها هي "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.".

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

screenshot

تحميل ملف CRX للإضافة Tab Colorizer | Customize your tab's icon!

قم بتنزيل ملفات الامتداد Tab Colorizer | Customize your tab's icon! بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        On any tab you have open, you can change the color of the tab's icon to any color you've defined. Giving you the control to highlight important tabs and never lose focus of which one is which.

Using the Customizer tool, you can add as many, or as little, color choices as you desire. Pick the colors you like, in any order that works for you!                    

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

الاسم Tab Colorizer | Customize your tab's icon! Tab Colorizer | Customize your tab's icon!
ID nkdjooaecafkkldnkaokhpaindamlngj
عنوان URL الرسمي https://chromewebstore.google.com/detail/tab-colorizer-customize-y/nkdjooaecafkkldnkaokhpaindamlngj
الوصف Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.
حجم الملف 16.95 MB
عدد التثبيتات 11,417
النسخة الحالية 0.9
آخر تحديث 2022-11-13
تاريخ النشر 2018-03-19
تقييم 2.45/5 مجموع تقييمات 86
المطور https://tabcolorizer.io
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://tabcolorizer.io
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Colorizer | Customize your tab's icon!",
    "short_name": "Tab Icon Colorizer",
    "description": "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.",
    "version": "0.9",
    "author": "Mathew Komyanek",
    "manifest_version": 2,
    "options_page": "options.html",
    "web_accessible_resources": [
        "options.html"
    ],
    "background": {
        "scripts": [
            "js\/background_script.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/tabColorizer_16.png",
        "default_title": "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.",
        "default_popup": "popup.html"
    },
    "commands": {
        "flip-color-forward": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "mac": "Command+Shift+Space"
            },
            "description": "Flip colors"
        }
    },
    "icons": {
        "16": "images\/tabColorizer_16.png",
        "32": "images\/tabColorizer_32.png",
        "48": "images\/tabColorizer_48.png",
        "128": "images\/tabColorizer_128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ]
}