Color Icon

A Chrome Extension to differentiate tabs with the same Favicon

Color Iconคืออะไร?

Color Icon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "A Chrome Extension to differentiate tabs with the same Favicon"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Color Icon

ดาวน์โหลดไฟล์ส่วนขยาย Color Icon ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Color Icon is an extension that enables the user to distinguish tabs with the same favicon by marking them with a color of your choice.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Color Icon Color Icon
ID bfmebkjjepnclncmndhcgcmmmchijbop
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/color-icon/bfmebkjjepnclncmndhcgcmmmchijbop
คำอธิบาย A Chrome Extension to differentiate tabs with the same Favicon
ขนาดไฟล์ 66.6 KB
จำนวนการติดตั้ง 52
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2018-08-19
วันที่เผยแพร่ 2018-08-19
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tiagonbotelho/color-icon
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Color Icon",
    "version": "0.2",
    "author": "Tiago Botelho",
    "manifest_version": 2,
    "description": "A Chrome Extension to differentiate tabs with the same Favicon",
    "homepage_url": "https:\/\/github.com\/tiagonbotelho\/color-icon",
    "icons": {
        "16": "icons\/16logo.png",
        "48": "icons\/48logo.png",
        "128": "icons\/128logo.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/helpers.js",
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/19logo.png",
        "default_title": "Color Icon",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "chrome:\/\/favicon\/",
        "tabs",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/favico.js\/favico-0.3.10.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}