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 là gì?
Merriam's Webpage là một tiện ích mở rộng Chrome được phát triển bởi April Roszkowski, và tính năng chính của nó là "Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin.".
Ả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 Merriam's Webpage
Tải xuống các tệp mở rộng Merriam's Webpage 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Merriam's Webpage |
ID | jndchalbfebjhgfllgdigdcfpocoahoe |
URL Chính Thức | https://chromewebstore.google.com/detail/merriams-webpage/jndchalbfebjhgfllgdigdcfpocoahoe |
Mô tả | Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin. |
Kích Thước Tệp | 215 KB |
Số Lần Cài Đặt | 389 |
Phiên Bản Hiện Tại | 1.3.2 |
Cập Nhật Lần Cuối | 2022-01-13 |
Ngày Phát Hành | 2021-06-16 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | April Roszkowski |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/szkow/merriam-webpage |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |