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 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 फ़ाइल डाउनलोड करें
crx प्रारूप में Merriam's Webpage एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" ] } |