Simple Word Highlighter
This extension highlights words on a webpage as specified by the user
Simple Word Highlighterคืออะไร?
Simple Word Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย berdinemail และคุณลักษณะหลักของมันคือ "This extension highlights words on a webpage as specified by the user"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Word Highlighter
ดาวน์โหลดไฟล์ส่วนขยาย Simple Word Highlighter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you highlight words on any website. You can specify which websites to run on You can specify which words to highlight per page You can specify which color you would like to highlight with
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ojmcbcojgmdcdmnidlgjjajoniomibdj |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/simple-word-highlighter/ojmcbcojgmdcdmnidlgjjajoniomibdj |
คำอธิบาย | This extension highlights words on a webpage as specified by the user |
ขนาดไฟล์ | 103 KB |
จำนวนการติดตั้ง | 926 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-10-24 |
วันที่เผยแพร่ | 2014-10-24 |
คะแนน | 3.89/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | berdinemail |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Word Highlighter", "description": "This extension highlights words on a webpage as specified by the user", "version": "1.0", "background": { "scripts": [ "Configure.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.min.js", "ModifyPage.js" ], "css": [ "Highlight.css" ], "all_frames": true } ], "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ] } |