Highlight Search Keywords

Highlight the keywords that you searched in google

Qu'est-ce que Highlight Search Keywords ?

Highlight Search Keywords est une extension Chrome développée par Desheng Li, et sa fonction principale est "Highlight the keywords that you searched in google".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Highlight Search Keywords

Téléchargez les fichiers d'extension Highlight Search Keywords au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Highlight Search Keywords Highlight Search Keywords
ID nflhamjkngakbdnihackfkjoabknmooi
URL Officiel https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi
Description Highlight the keywords that you searched in google
Taille du Fichier 145 KB
Nombre d'Installations 5,605
Version Actuelle 0.4
Dernière Mise à Jour 2019-08-21
Date de Publication 2019-08-21
Évaluation 3.21/5 Total 33 Évaluations
Développeur Desheng Li
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}