Highlight Search Keywords
Highlight the keywords that you searched in google
Highlight Search Keywordsคืออะไร?
Highlight Search Keywords เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Desheng Li และคุณลักษณะหลักของมันคือ "Highlight the keywords that you searched in google"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Highlight Search Keywords
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" } ] } |