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.

Cos'è Merriam's Webpage?

Merriam's Webpage è un'estensione di Chrome sviluppata da April Roszkowski, e la sua funzione principale è "Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Merriam's Webpage

Scarica i file di estensione Merriam's Webpage in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Merriam's Webpage Merriam's Webpage
ID jndchalbfebjhgfllgdigdcfpocoahoe
URL Ufficiale https://chromewebstore.google.com/detail/merriams-webpage/jndchalbfebjhgfllgdigdcfpocoahoe
Descrizione Allows you to easily look up words on webpages in Merriam-Webster's dictionary. Highlight a word and click the book icon to begin.
Dimensione del File 215 KB
Conteggio Installazioni 389
Versione Corrente 1.3.2
Ultimo Aggiornamento 2022-01-13
Data di Pubblicazione 2021-06-16
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore April Roszkowski
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/szkow/merriam-webpage
Lingue Supportate 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"
    ]
}