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