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
电子邮箱 [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"
    ]
}