Highlit

Highlights all occurrences of the currently selected word on page.

¿Qué es Highlit?

Highlit es una extensión de Chrome desarrollada por Nikola Toshev, y su función principal es "Highlights all occurrences of the currently selected word on page.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Highlit

Descarga archivos de extensión Highlit en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
URL Oficial https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Descripción Highlights all occurrences of the currently selected word on page.
Tamaño del Archivo 15.58 KB
Cantidad de Instalaciones 952
Versión Actual 0.2.2
Última Actualización 2019-03-08
Fecha de Publicación 2019-03-08
Calificación 3.19/5 Total de 16 Calificaciones
Desarrollador Nikola Toshev
Tipo de Pago free
Idiomas Soportados 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"
    ]
}