Highlit

Highlights all occurrences of the currently selected word on page.

What is Highlit?

Highlit is a Chrome extension developed by Nikola Toshev, and its main feature is "Highlights all occurrences of the currently selected word on page.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Highlit Extension CRX File

Download Highlit 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

                        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.                    

Extension Basic Information

Name Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
Official URL https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Description Highlights all occurrences of the currently selected word on page.
File Size 15.58 KB
Installation Count 952
Current Version 0.2.2
Last Updated 2019-03-08
Publish Date 2019-03-08
Rating 3.19/5 Total 16 Ratings
Developer Nikola Toshev
Payment Type free
Supported Languages 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"
    ]
}