Highlit

Highlights all occurrences of the currently selected word on page.

Co to jest Highlit?

Highlit to rozszerzenie Chrome opracowane przez Nikola Toshev, a jego główną funkcją jest „Highlights all occurrences of the currently selected word on page.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Highlit

Pobierz pliki rozszerzeń Highlit w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
Oficjalny URL https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Opis Highlights all occurrences of the currently selected word on page.
Rozmiar pliku 15.58 KB
Liczba instalacji 952
Aktualna Wersja 0.2.2
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Ocena 3.19/5 Łącznie 16 Oceny
Deweloper Nikola Toshev
Typ Płatności free
Obsługiwane Języki 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"
    ]
}