Highlight Search Keywords

Highlight the keywords that you searched in google

Vad är Highlight Search Keywords?

Highlight Search Keywords är en Chrome-tillägg utvecklad av Desheng Li, och dess huvudfunktion är "Highlight the keywords that you searched in google".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Highlight Search Keywords-förlängningens CRX-fil

Ladda ner Highlight Search Keywords-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Highlight Search Keywords Highlight Search Keywords
ID nflhamjkngakbdnihackfkjoabknmooi
Officiell webbadress https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi
Beskrivning Highlight the keywords that you searched in google
Filstorlek 145 KB
Antal Installationer 5,605
Aktuell Version 0.4
Senast Uppdaterad 2019-08-21
Publiceringsdatum 2019-08-21
Betyg 3.21/5 Totalt 33 Betyg
Utvecklare Desheng Li
Betalningssätt free
Stödda Språk 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"
        }
    ]
}