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によって開発されたChromeの拡張機能で、その主な機能は「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

Merriam's Webpage拡張機能のCRXファイルをダウンロード

Merriam's Webpage拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 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
Eメール [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"
    ]
}