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.

Co je Merriam's Webpage?

Merriam's Webpage je rozšíření Chrome vyvinuté April Roszkowski, a jeho hlavní funkcí je „Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Merriam's Webpage

Stáhněte si soubory rozšíření Merriam's Webpage ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Merriam's Webpage Merriam's Webpage
ID jndchalbfebjhgfllgdigdcfpocoahoe
Oficiální URL https://chromewebstore.google.com/detail/merriams-webpage/jndchalbfebjhgfllgdigdcfpocoahoe
Popis Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin.
Velikost souboru 215 KB
Počet instalací 389
Aktuální Verze 1.3.2
Poslední Aktualizace 2022-01-13
Datum Vydání 2021-06-16
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář April Roszkowski
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/szkow/merriam-webpage
Podporované Jazyky 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"
    ]
}