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