Color Text

This extension highlights selected words.

What is Color Text?

Color Text is a Chrome extension developed by Sveta, and its main feature is "This extension highlights selected words.".

Extension Screenshots

screenshot

Download Color Text Extension CRX File

Download Color Text extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Color Text Color Text
ID ignkommcgoajegbfheombigogpiljejp
Official URL https://chrome.google.com/webstore/detail/color-text/ignkommcgoajegbfheombigogpiljejp
Description This extension highlights selected words.
File Size 40.28 KB
Installation Count 385
Current Version 1.0.3
Last Updated 2015-06-29
Publish Date 2015-06-29
Rating 4.75/5 Total 8 Ratings
Developer Sveta
Payment Type free
Supported Languages 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"
    ]
}