Selection Highlighter

Automatically highlight all occurrences of current selection on current page.

¿Qué es Selection Highlighter?

Selection Highlighter es una extensión de Chrome desarrollada por Tao, y su función principal es "Automatically highlight all occurrences of current selection on current page.".

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

                        Selection highlighter will help you automatically highlight all occurrences of current selection on current page, also works for shadow DOM pages.
The extension also allow you to toggle on/off the feature from options page, also change the default configurations like highlight color etc

Release notes:

v0.0.3:
- Allow config the threshold to ignore selection when apply highlighting
- Always ignore `style` tag when highlighting, avoid messing up the page                    

Información Básica de la Extensión

Nombre Selection Highlighter Selection Highlighter
ID maafgdeicpceceblgclafehagjndfjig
URL Oficial https://chromewebstore.google.com/detail/selection-highlighter/maafgdeicpceceblgclafehagjndfjig
Descripción Automatically highlight all occurrences of current selection on current page.
Tamaño del Archivo 96.84 KB
Cantidad de Instalaciones 112
Versión Actual 0.0.3
Última Actualización 2020-07-17
Fecha de Publicación 2020-06-03
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador Tao
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/taoalpha/selection-highlighter
URL de la Página de Ayuda https://github.com/taoalpha/selection-highlighter
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selection Highlighter",
    "description": "Automatically highlight all occurrences of current selection on current page.",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Selection Highlighter"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'unsafe-inline'; connect-src https:\/\/*",
    "permissions": [
        "activeTab",
        "",
        "storage",
        "tabs"
    ]
}