Multi-Highlight Tool
Search and highlight multiple words on web pages.
Multi-Highlight Toolคืออะไร?
Multi-Highlight Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย multihighttoolextension และคุณลักษณะหลักของมันคือ "Search and highlight multiple words on web pages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Multi-Highlight Tool
ดาวน์โหลดไฟล์ส่วนขยาย Multi-Highlight Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Easily add words to a list and have them highlighted on web pages. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | elbamfklmdfhbighpndmfdidofdonigb |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/multi-highlight-tool/elbamfklmdfhbighpndmfdidofdonigb |
| คำอธิบาย | Search and highlight multiple words on web pages. |
| ขนาดไฟล์ | 50.12 KB |
| จำนวนการติดตั้ง | 30,204 |
| เวอร์ชันปัจจุบัน | 1.0 |
| อัปเดตครั้งล่าสุด | 2021-08-28 |
| วันที่เผยแพร่ | 2021-08-28 |
| คะแนน | 4.43/5 รวมทั้งหมด 14 คะแนน |
| ผู้พัฒนา | multihighttoolextension |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"background": {
"persistent": false,
"scripts": [
"js\/jquery.js",
"js\/background.js"
]
},
"browser_action": {
"default_icon": "img\/19x19.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": true,
"css": [
"css\/highlight.css"
],
"js": [
"js\/jquery.js",
"js\/highlighter.js",
"js\/content-action.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
]
}
],
"description": "Search and highlight multiple words on web pages.",
"icons": {
"100": "img\/100x100.png",
"128": "img\/128x128.png",
"19": "img\/19x19.png",
"48": "img\/48x48.png"
},
"manifest_version": 2,
"name": "Multi-Highlight Tool",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.0"
} | |