Simple Word Highlighter

This extension highlights words on a webpage as specified by the user

Apa itu Simple Word Highlighter?

Simple Word Highlighter adalah ekstensi Chrome yang dikembangkan oleh berdinemail, dan fitur utamanya adalah "This extension highlights words on a webpage as specified by the user".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Simple Word Highlighter

Unduh file ekstensi Simple Word Highlighter 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 allows you highlight words on any website.

You can specify which websites to run on

You can specify which words to highlight per page

You can specify which color you would like to highlight with                    

Informasi Dasar Ekstensi

Nama Simple Word Highlighter Simple Word Highlighter
ID ojmcbcojgmdcdmnidlgjjajoniomibdj
URL Resmi https://chrome.google.com/webstore/detail/simple-word-highlighter/ojmcbcojgmdcdmnidlgjjajoniomibdj
Deskripsi This extension highlights words on a webpage as specified by the user
Ukuran File 103 KB
Jumlah Instalasi 926
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-10-24
Tanggal Publikasi 2014-10-24
Penilaian 3.89/5 Total 9 Penilaian
Pengembang berdinemail
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Word Highlighter",
    "description": "This extension highlights words on a webpage as specified by the user",
    "version": "1.0",
    "background": {
        "scripts": [
            "Configure.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "ModifyPage.js"
            ],
            "css": [
                "Highlight.css"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ]
}