Color Text

This extension highlights selected words.

Co to jest Color Text?

Color Text to rozszerzenie Chrome opracowane przez Sveta, a jego główną funkcją jest „This extension highlights selected words.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Color Text

Pobierz pliki rozszerzeń Color Text w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Color Text Color Text
ID ignkommcgoajegbfheombigogpiljejp
Oficjalny URL https://chrome.google.com/webstore/detail/color-text/ignkommcgoajegbfheombigogpiljejp
Opis This extension highlights selected words.
Rozmiar pliku 40.28 KB
Liczba instalacji 385
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2015-06-29
Data Publikacji 2015-06-29
Ocena 4.75/5 Łącznie 8 Oceny
Deweloper Sveta
Typ Płatności free
Obsługiwane Języki 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"
    ]
}