Highlit

Highlights all occurrences of the currently selected word on page.

Apa itu Highlit?

Highlit adalah ekstensi Chrome yang dikembangkan oleh Nikola Toshev, dan fitur utamanya adalah "Highlights all occurrences of the currently selected word on page.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Highlit

Unduh file ekstensi Highlit 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

                        An extension that highlights all occurrences of the currently selected word or phrase (recognizing different word forms in English). This is useful to outline central concepts in a text, or visually highlight where a specific identifier is used in code in browser window. Double-click a word on the current page to highlight it and all it's occurrences.                    

Informasi Dasar Ekstensi

Nama Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
URL Resmi https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Deskripsi Highlights all occurrences of the currently selected word on page.
Ukuran File 15.58 KB
Jumlah Instalasi 952
Versi Saat Ini 0.2.2
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Penilaian 3.19/5 Total 16 Penilaian
Pengembang Nikola Toshev
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlit",
    "version": "0.2.2",
    "manifest_version": 2,
    "minimum_chrome_version": "39",
    "description": "Highlights all occurrences of the currently selected word on page.",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lancasterStemming.js",
                "highlit.min.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "*.map"
    ],
    "permissions": [
        "storage"
    ]
}