Highlight Search Keywords
Highlight the keywords that you searched in google
Co je Highlight Search Keywords?
Highlight Search Keywords je rozšíření Chrome vyvinuté Desheng Li, a jeho hlavní funkcí je „Highlight the keywords that you searched in google“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Highlight Search Keywords
Stáhněte si soubory rozšíření Highlight Search Keywords ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Highlight Search Keywords |
ID | nflhamjkngakbdnihackfkjoabknmooi |
Oficiální URL | https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi |
Popis | Highlight the keywords that you searched in google |
Velikost souboru | 145 KB |
Počet instalací | 5,605 |
Aktuální Verze | 0.4 |
Poslední Aktualizace | 2019-08-21 |
Datum Vydání | 2019-08-21 |
Hodnocení | 3.21/5 Celkem 33 Hodnocení |
Vývojář | Desheng Li |
Typ Platby | free |
Podporované Jazyky | 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" } ] } |