Highlight Search Keywords

Highlight the keywords that you searched in google

Wat is Highlight Search Keywords?

Highlight Search Keywords is een Chrome-extensie ontwikkeld door Desheng Li, en de belangrijkste functie is "Highlight the keywords that you searched in google".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Highlight Search Keywords

Download Highlight Search Keywords-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Highlight Search Keywords Highlight Search Keywords
ID nflhamjkngakbdnihackfkjoabknmooi
Officiële URL https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi
Beschrijving Highlight the keywords that you searched in google
Bestandsgrootte 145 KB
Aantal Installaties 5,605
Huidige Versie 0.4
Laatst Bijgewerkt 2019-08-21
Publicatiedatum 2019-08-21
Beoordeling 3.21/5 Totaal 33 Beoordelingen
Ontwikkelaar Desheng Li
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}