Color Icon

A Chrome Extension to differentiate tabs with the same Favicon

Cos'è Color Icon?

Color Icon è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "A Chrome Extension to differentiate tabs with the same Favicon".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Color Icon

Scarica i file di estensione Color Icon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Color Icon Color Icon
ID bfmebkjjepnclncmndhcgcmmmchijbop
URL Ufficiale https://chromewebstore.google.com/detail/color-icon/bfmebkjjepnclncmndhcgcmmmchijbop
Descrizione A Chrome Extension to differentiate tabs with the same Favicon
Dimensione del File 66.6 KB
Conteggio Installazioni 52
Versione Corrente 0.2
Ultimo Aggiornamento 2018-08-19
Data di Pubblicazione 2018-08-19
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tiagonbotelho/color-icon
Lingue Supportate 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"
            ]
        }
    ]
}