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.
Was ist Merriam's Webpage?
Merriam's Webpage ist eine Chrome-Erweiterung, die von April Roszkowski entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin.".
Erweiterungsscreenshots
Merriam's Webpage-Erweiterungs-CRX-Datei herunterladen
Laden Sie Merriam's Webpage-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Merriam's Webpage |
ID | jndchalbfebjhgfllgdigdcfpocoahoe |
Offizielle URL | https://chromewebstore.google.com/detail/merriams-webpage/jndchalbfebjhgfllgdigdcfpocoahoe |
Beschreibung | Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin. |
Dateigröße | 215 KB |
Installationsanzahl | 389 |
Aktuelle Version | 1.3.2 |
Letztes Update | 2022-01-13 |
Veröffentlichungsdatum | 2021-06-16 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | April Roszkowski |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/szkow/merriam-webpage |
Unterstützte Sprachen | 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" ] } |