Highlit

Highlights all occurrences of the currently selected word on page.

O que é Highlit?

Highlit é uma extensão do Chrome desenvolvida por Nikola Toshev, e sua principal característica é "Highlights all occurrences of the currently selected word on page.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Highlit

Baixe arquivos de extensão Highlit no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
URL Oficial https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Descrição Highlights all occurrences of the currently selected word on page.
Tamanho do Arquivo 15.58 KB
Contagem de Instalações 952
Versão Atual 0.2.2
Última Atualização 2019-03-08
Data de Publicação 2019-03-08
Classificação 3.19/5 Total de 16 Avaliações
Desenvolvedor Nikola Toshev
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}