Word Highlighter

This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web

¿Qué es Word Highlighter?

Word Highlighter es una extensión de Chrome desarrollada por Rafael Almeida, y su función principal es "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Word Highlighter

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

                        The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter                    

Información Básica de la Extensión

Nombre Word Highlighter Word Highlighter
ID ncjaameocjfjjnjcijikhkhifncjijhn
URL Oficial https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn
Descripción This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Tamaño del Archivo 229 KB
Cantidad de Instalaciones 826
Versión Actual 1.0.2
Última Actualización 2016-11-27
Fecha de Publicación 2016-11-27
Calificación 2.75/5 Total de 8 Calificaciones
Desarrollador Rafael Almeida
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Highlighter",
    "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web",
    "version": "1.0.2",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ]
        }
    ]
}