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是由Manu Cornet開發的Chrome擴展程式,該擴展的主要功能是“Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.”。

擴展截圖

screenshot

下載Gmail Color Favicon擴展crx文件

下載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
官方網址 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"
    ]
}