Highlight Search Keywords

Highlight the keywords that you searched in google

Hvad er Highlight Search Keywords?

Highlight Search Keywords er en Chrome-udvidelse udviklet af Desheng Li, og dens hovedfunktion er "Highlight the keywords that you searched in google".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Highlight Search Keywords-udvidelses-CRX-fil

Download Highlight Search Keywords-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Highlight Search Keywords Highlight Search Keywords
ID nflhamjkngakbdnihackfkjoabknmooi
Officiel URL https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi
Beskrivelse Highlight the keywords that you searched in google
Filstørrelse 145 KB
Antal Installationer 5,605
Nuværende Version 0.4
Senest Opdateret 2019-08-21
Udgivelsesdato 2019-08-21
Bedømmelse 3.21/5 Samlet 33 Bedømmelser
Udvikler Desheng Li
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}