Highlight Search Keywords

Highlight the keywords that you searched in google

¿Qué es Highlight Search Keywords?

Highlight Search Keywords es una extensión de Chrome desarrollada por Desheng Li, y su función principal es "Highlight the keywords that you searched in google".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Highlight Search Keywords

Descarga archivos de extensión Highlight Search Keywords 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

                        Since the new policy of Chrome Extension, to enable the extension again. Please click the icon -> This can read an change the site data -> On all site (recommended) or the site you are currently on.
 
An extension that highlight the keywords that you searched on Google.
Press F5 to remove the highlights.                    

Información Básica de la Extensión

Nombre Highlight Search Keywords Highlight Search Keywords
ID nflhamjkngakbdnihackfkjoabknmooi
URL Oficial https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi
Descripción Highlight the keywords that you searched in google
Tamaño del Archivo 145 KB
Cantidad de Instalaciones 5,605
Versión Actual 0.4
Última Actualización 2019-08-21
Fecha de Publicación 2019-08-21
Calificación 3.21/5 Total de 33 Calificaciones
Desarrollador Desheng Li
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlight Search Keywords",
    "description": "Highlight the keywords that you searched in google",
    "version": "0.4",
    "permissions": [
        "storage"
    ],
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*",
                "http:\/\/www.google.com\/*"
            ],
            "js": [
                "catchkeywords.js"
            ],
            "run_at": "document_end"
        },
        {
            "exclude_matches": [
                "https:\/\/www.google.com\/*",
                "http:\/\/www.google.com\/*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "highlightkeywords.js"
            ],
            "run_at": "document_end"
        }
    ]
}