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.

What is Merriam's Webpage?

Merriam's Webpage is a Chrome extension developed by April Roszkowski, and its main feature is "Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin.".

Extension Screenshots

screenshot

Download Merriam's Webpage Extension CRX File

Download Merriam's Webpage extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Merriam's Webpage Merriam's Webpage
ID jndchalbfebjhgfllgdigdcfpocoahoe
Official URL https://chromewebstore.google.com/detail/merriams-webpage/jndchalbfebjhgfllgdigdcfpocoahoe
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.
File Size 215 KB
Installation Count 389
Current Version 1.3.2
Last Updated 2022-01-13
Publish Date 2021-06-16
Rating 5.00/5 Total 2 Ratings
Developer April Roszkowski
Email [email protected]
Payment Type free
Help Page URL https://github.com/szkow/merriam-webpage
Supported Languages 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"
    ]
}