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