Color Text

This extension highlights selected words.

Apa itu Color Text?

Color Text adalah ekstensi Chrome yang dikembangkan oleh Sveta, dan fitur utamanya adalah "This extension highlights selected words.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Color Text

Unduh file ekstensi Color Text dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Color Text Color Text
ID ignkommcgoajegbfheombigogpiljejp
URL Resmi https://chrome.google.com/webstore/detail/color-text/ignkommcgoajegbfheombigogpiljejp
Deskripsi This extension highlights selected words.
Ukuran File 40.28 KB
Jumlah Instalasi 385
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2015-06-29
Tanggal Publikasi 2015-06-29
Penilaian 4.75/5 Total 8 Penilaian
Pengembang Sveta
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}