Highlight Search Keywords
Highlight the keywords that you searched in google
Highlight Search Keywords là gì?
Highlight Search Keywords là một tiện ích mở rộng Chrome được phát triển bởi Desheng Li, và tính năng chính của nó là "Highlight the keywords that you searched in google".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Highlight Search Keywords
Tải xuống các tệp mở rộng Highlight Search Keywords dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Highlight Search Keywords |
ID | nflhamjkngakbdnihackfkjoabknmooi |
URL Chính Thức | https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi |
Mô tả | Highlight the keywords that you searched in google |
Kích Thước Tệp | 145 KB |
Số Lần Cài Đặt | 5,605 |
Phiên Bản Hiện Tại | 0.4 |
Cập Nhật Lần Cuối | 2019-08-21 |
Ngày Phát Hành | 2019-08-21 |
Đánh Giá | 3.21/5 Tổng số 33 Đánh Giá |
Nhà Phát Triển | Desheng Li |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |