Highlight Search Keywords

Highlight the keywords that you searched in google

Cos'è Highlight Search Keywords?

Highlight Search Keywords è un'estensione di Chrome sviluppata da Desheng Li, e la sua funzione principale è "Highlight the keywords that you searched in google".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Highlight Search Keywords

Scarica i file di estensione Highlight Search Keywords in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Highlight Search Keywords Highlight Search Keywords
ID nflhamjkngakbdnihackfkjoabknmooi
URL Ufficiale https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi
Descrizione Highlight the keywords that you searched in google
Dimensione del File 145 KB
Conteggio Installazioni 5,605
Versione Corrente 0.4
Ultimo Aggiornamento 2019-08-21
Data di Pubblicazione 2019-08-21
Valutazione 3.21/5 Totale 33 Valutazioni
Sviluppatore Desheng Li
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}