Color Text

This extension highlights selected words.

Wat is Color Text?

Color Text is een Chrome-extensie ontwikkeld door Sveta, en de belangrijkste functie is "This extension highlights selected words.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Color Text

Download Color Text-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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 {})                    

Basisinformatie over de Extensie

Naam Color Text Color Text
ID ignkommcgoajegbfheombigogpiljejp
Officiële URL https://chrome.google.com/webstore/detail/color-text/ignkommcgoajegbfheombigogpiljejp
Beschrijving This extension highlights selected words.
Bestandsgrootte 40.28 KB
Aantal Installaties 385
Huidige Versie 1.0.3
Laatst Bijgewerkt 2015-06-29
Publicatiedatum 2015-06-29
Beoordeling 4.75/5 Totaal 8 Beoordelingen
Ontwikkelaar Sveta
Betalingswijze free
Ondersteunde Talen 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"
    ]
}