Selection Highlighter

Highlight occurrences of selected text, with or without a keypress.

O que é Selection Highlighter?

Selection Highlighter é uma extensão do Chrome desenvolvida por https://neaumusic.com, e sua principal característica é "Highlight occurrences of selected text, with or without a keypress.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Selection Highlighter

Baixe arquivos de extensão Selection Highlighter 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

                        For code inspection and document analysis: search for and find keywords.

- No need to press CMD+F
- Maintains current selection
- Open source and configurable options (JavaScript)
- Ensure a "gate" key is pressed
- Match whole word and/or case-insensitive
- Blacklist bad hosts and ancestor HTML nodes

Highlight works on all sites, including GitHub, StackOverflow, HackerNews, Reddit, etc.

See all code involved:
1. Dev Console -> Sources -> Content Scripts -> Selection Highlighter
2. chrome://extensions -> Selection Highlighter -> Options -> Dev Console -> Sources

https://github.com/neaumusic/selection-highlighter                    

Informações Básicas da Extensão

Nome Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
URL Oficial https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
Descrição Highlight occurrences of selected text, with or without a keypress.
Tamanho do Arquivo 470 KB
Contagem de Instalações 8,418
Versão Atual 3.1.0
Última Atualização 2024-01-14
Data de Publicação 2020-06-07
Classificação 4.59/5 Total de 78 Avaliações
Desenvolvedor https://neaumusic.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/neaumusic/selection-highlighter
URL da Página de Ajuda https://github.com/neaumusic/selection-highlighter/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selection Highlighter",
    "version": "3.1.0",
    "description": "Highlight occurrences of selected text, with or without a keypress.",
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content_script\/main.js"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon.png",
        "default_title": "Selection Highlighter",
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "1024": "images\/icon.png"
    },
    "permissions": [
        "storage"
    ]
}