Selection Highlighter

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

¿Qué es Selection Highlighter?

Selection Highlighter es una extensión de Chrome desarrollada por https://neaumusic.com, y su función principal es "Highlight occurrences of selected text, with or without a keypress.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Selection Highlighter

Descarga archivos de extensión Selection Highlighter 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

                        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                    

Información Básica de la Extensión

Nombre Selection Highlighter Selection Highlighter
ID nepmkgohgoagfgcoegjaggacodcpdibj
URL Oficial https://chromewebstore.google.com/detail/selection-highlighter/nepmkgohgoagfgcoegjaggacodcpdibj
Descripción Highlight occurrences of selected text, with or without a keypress.
Tamaño del Archivo 470 KB
Cantidad de Instalaciones 8,418
Versión Actual 3.1.0
Última Actualización 2024-01-14
Fecha de Publicación 2020-06-07
Calificación 4.59/5 Total de 78 Calificaciones
Desarrollador https://neaumusic.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/neaumusic/selection-highlighter
URL de la Página de Ayuda https://github.com/neaumusic/selection-highlighter/issues
Idiomas Soportados 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"
    ]
}