Merriam's Webpage
Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin.
Merriam's Webpageคืออะไร?
Merriam's Webpage เป็นส่วนขยายของ Chrome ที่พัฒนาโดย April Roszkowski และคุณลักษณะหลักของมันคือ "Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Merriam's Webpage
ดาวน์โหลดไฟล์ส่วนขยาย Merriam's Webpage ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Highlight a word on a website, and a book icon will pop up next to it. Click that to search the word on Merriam Webster. Alternatively, use the icon on the browser dock to manually search. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | jndchalbfebjhgfllgdigdcfpocoahoe |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/merriams-webpage/jndchalbfebjhgfllgdigdcfpocoahoe |
| คำอธิบาย | Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin. |
| ขนาดไฟล์ | 215 KB |
| จำนวนการติดตั้ง | 389 |
| เวอร์ชันปัจจุบัน | 1.3.2 |
| อัปเดตครั้งล่าสุด | 2022-01-13 |
| วันที่เผยแพร่ | 2021-06-16 |
| คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
| ผู้พัฒนา | April Roszkowski |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| URL หน้าช่วยเหลือ | https://github.com/szkow/merriam-webpage |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Merriam's Webpage",
"version": "1.3.2",
"description": "Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin.",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"main.js"
],
"css": [
"dict_style.css"
]
}
],
"web_accessible_resources": [
"book-solid.svg",
"chevron-circle-right-solid.svg",
"ZillaSlab-Light.woff",
"ZillaSlab-SemiBold.woff"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Merriam's Webpage",
"default_popup": "popup.html",
"default_icon": "dictlookup.jpg"
},
"permissions": [
"contextMenus",
"storage"
]
} | |