Highlit

Highlights all occurrences of the currently selected word on page.

Co je Highlit?

Highlit je rozšíření Chrome vyvinuté Nikola Toshev, a jeho hlavní funkcí je „Highlights all occurrences of the currently selected word on page.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Highlit

Stáhněte si soubory rozšíření Highlit ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
Oficiální URL https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Popis Highlights all occurrences of the currently selected word on page.
Velikost souboru 15.58 KB
Počet instalací 952
Aktuální Verze 0.2.2
Poslední Aktualizace 2019-03-08
Datum Vydání 2019-03-08
Hodnocení 3.19/5 Celkem 16 Hodnocení
Vývojář Nikola Toshev
Typ Platby free
Podporované Jazyky 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"
    ]
}