Color Text

This extension highlights selected words.

Cos'è Color Text?

Color Text è un'estensione di Chrome sviluppata da Sveta, e la sua funzione principale è "This extension highlights selected words.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Color Text

Scarica i file di estensione Color Text 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

                        This extension can highlight selected words.

 - "Color Text" can highlight multiple words.
 - Words are colored in real time.
 - You can use regex expressions (wrap regex expressions with {})                    

Informazioni di Base sull'Estensione

Nome Color Text Color Text
ID ignkommcgoajegbfheombigogpiljejp
URL Ufficiale https://chrome.google.com/webstore/detail/color-text/ignkommcgoajegbfheombigogpiljejp
Descrizione This extension highlights selected words.
Dimensione del File 40.28 KB
Conteggio Installazioni 385
Versione Corrente 1.0.3
Ultimo Aggiornamento 2015-06-29
Data di Pubblicazione 2015-06-29
Valutazione 4.75/5 Totale 8 Valutazioni
Sviluppatore Sveta
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Text",
    "description": "This extension highlights selected words.",
    "version": "1.0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "*.js",
        "jquery.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "myscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "",
        "storage"
    ]
}