Quickfind

highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.

¿Qué es Quickfind?

Quickfind es una extensión de Chrome desarrollada por matthew, y su función principal es "highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Quickfind

Descarga archivos de extensión Quickfind 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 occurrences of a specific word on a web page by alt + double clicking it or highlight a phrase by alt + selecting it.

This is really useful for skimming text or documentation.

## THIS EXTENSION IS IN DEV BETA ##                    

Información Básica de la Extensión

Nombre Quickfind Quickfind
ID dhamednoifcgcdpdoodioenmiakpccjo
URL Oficial https://chromewebstore.google.com/detail/quickfind/dhamednoifcgcdpdoodioenmiakpccjo
Descripción highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.
Tamaño del Archivo 41.68 KB
Cantidad de Instalaciones 400
Versión Actual 1.3
Última Actualización 2016-01-09
Fecha de Publicación 2016-01-09
Calificación 3.57/5 Total de 7 Calificaciones
Desarrollador matthew
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quickfind",
    "description": "highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.",
    "version": "1.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "author": "Matthew Moy",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "search.js",
                "findAndReplaceDOM.min.js"
            ]
        }
    ]
}