Color Icon

A Chrome Extension to differentiate tabs with the same Favicon

什麼是Color Icon?

Color Icon是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“A Chrome Extension to differentiate tabs with the same Favicon”。

擴展截圖

screenshot
screenshot
screenshot

下載Color Icon擴展crx文件

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