Highlight Search Keywords
Highlight the keywords that you searched in google
What is Highlight Search Keywords?
Highlight Search Keywords is a Chrome extension developed by Desheng Li, and its main feature is "Highlight the keywords that you searched in google".
Extension Screenshots
Download Highlight Search Keywords Extension CRX File
Download Highlight Search Keywords extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Highlight Search Keywords |
ID | nflhamjkngakbdnihackfkjoabknmooi |
Official URL | https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi |
Description | Highlight the keywords that you searched in google |
File Size | 145 KB |
Installation Count | 5,605 |
Current Version | 0.4 |
Last Updated | 2019-08-21 |
Publish Date | 2019-08-21 |
Rating | 3.21/5 Total 33 Ratings |
Developer | Desheng Li |
Payment Type | free |
Supported Languages | 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" } ] } |