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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        *** 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"
    ]
}