Highlit

Highlights all occurrences of the currently selected word on page.

Hvad er Highlit?

Highlit er en Chrome-udvidelse udviklet af Nikola Toshev, og dens hovedfunktion er "Highlights all occurrences of the currently selected word on page.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Highlit-udvidelses-CRX-fil

Download Highlit-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
Officiel URL https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Beskrivelse Highlights all occurrences of the currently selected word on page.
Filstørrelse 15.58 KB
Antal Installationer 952
Nuværende Version 0.2.2
Senest Opdateret 2019-03-08
Udgivelsesdato 2019-03-08
Bedømmelse 3.19/5 Samlet 16 Bedømmelser
Udvikler Nikola Toshev
Betalingsmetode free
Understøttede Sprog 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"
    ]
}