Highlight all on dblclick

Highlight all words in websites with one doubleclick

¿Qué es Highlight all on dblclick?

Highlight all on dblclick es una extensión de Chrome desarrollada por Trinitas, y su función principal es "Highlight all words in websites with one doubleclick".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Highlight all on dblclick

Descarga archivos de extensión Highlight all on dblclick 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

                        Highlight all words in websites with one double click.

1: Click the icon so it becoms green, now it's ready. 
2: Go to some page and double click a word, it will become hightlighted and the rest matching words.
3: Click icon again so it becoms red to erase all highlighted words. 

!!! Only tested in Chrome and dosen't work in all websites !!!
Enjoy                    

Información Básica de la Extensión

Nombre Highlight all on dblclick Highlight all on dblclick
ID ibbikoelnlhphegnjbojfeokpcneaohg
URL Oficial https://chrome.google.com/webstore/detail/highlight-all-on-dblclick/ibbikoelnlhphegnjbojfeokpcneaohg
Descripción Highlight all words in websites with one doubleclick
Tamaño del Archivo 87.89 KB
Cantidad de Instalaciones 559
Versión Actual 0.2
Última Actualización 2016-11-06
Fecha de Publicación 2016-11-06
Calificación 3.95/5 Total de 19 Calificaciones
Desarrollador Trinitas
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlight all on dblclick",
    "version": "0.2",
    "manifest_version": 2,
    "description": "Highlight all words in websites with one doubleclick",
    "icons": {
        "16": "img\/highlight16.png",
        "128": "img\/highlight128.png"
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/highlight.js"
            ]
        }
    ],
    "minimum_chrome_version": "20",
    "permissions": [
        "windows",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}