Highlight Search Keywords
Highlight the keywords that you searched in google
什麼是Highlight Search Keywords?
Highlight Search Keywords是由Desheng Li開發的Chrome擴展程式,該擴展的主要功能是“Highlight the keywords that you searched in google”。
擴展截圖
下載Highlight Search Keywords擴展crx文件
下載Highlight Search Keywords擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Highlight Search Keywords |
ID | nflhamjkngakbdnihackfkjoabknmooi |
官方網址 | https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi |
簡介 | Highlight the keywords that you searched in google |
檔案大小 | 145 KB |
安裝次數 | 5,605 |
目前版本 | 0.4 |
更新時間 | 2019-08-21 |
上架時間 | 2019-08-21 |
評分 | 3.21/5 共 33 次評分 |
開發者 | Desheng Li |
付費類型 | free |
支援的語言 | 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" } ] } |