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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Merriam's Webpage |
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 |
عنوان صفحة المساعدة | 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" ] } |