Highlit

Highlights all occurrences of the currently selected word on page.

Cos'è Highlit?

Highlit è un'estensione di Chrome sviluppata da Nikola Toshev, e la sua funzione principale è "Highlights all occurrences of the currently selected word on page.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Highlit

Scarica i file di estensione Highlit in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
URL Ufficiale https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Descrizione Highlights all occurrences of the currently selected word on page.
Dimensione del File 15.58 KB
Conteggio Installazioni 952
Versione Corrente 0.2.2
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 3.19/5 Totale 16 Valutazioni
Sviluppatore Nikola Toshev
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}