Gmail Color Favicon

Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.

ما هو Gmail Color Favicon؟

Gmail Color Favicon هو إضافة Chrome تم تطويرها بواسطة Manu Cornet، والميزة الرئيسية لها هي "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.".

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

screenshot

تحميل ملف CRX للإضافة Gmail Color Favicon

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

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

                        *** Please reload your Gmail tabs after installing this extension. ***

*** Known issue: the color you've chosen doesn't stick when you reload your Gmail. That's next on the roadmap. ***

Feedback and contributions welcome!                    

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

الاسم Gmail Color Favicon Gmail Color Favicon
ID ibkehhmaemkhpniaekaggfcbhfhaiiho
عنوان URL الرسمي https://chrome.google.com/webstore/detail/gmail-color-favicon/ibkehhmaemkhpniaekaggfcbhfhaiiho
الوصف Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.
حجم الملف 652 KB
عدد التثبيتات 422
النسخة الحالية 0.15
آخر تحديث 2016-01-06
تاريخ النشر 2016-01-06
تقييم 4.00/5 مجموع تقييمات 10
المطور Manu Cornet
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/lmanul/gmailcolorfavicon
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail Color Favicon",
    "version": "0.15",
    "description": "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.",
    "browser_action": {
        "default_title": "Pick a color",
        "default_icon": "icon_19.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "19": "icon_19.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "72": "icon_72.png",
        "128": "icon_128.png",
        "250": "icon_250.png"
    },
    "permissions": [
        "https:\/\/mail.google.com\/*",
        "tabs"
    ]
}