Dictionary

Select a word on the webpage and open popup to instantly look up in the dictionary

什么是Dictionary?

Dictionary是由SandeepKrSuman开发的Chrome扩展程序,该扩展的主要功能是“Select a word on the webpage and open popup to instantly look up in the dictionary”。

扩展截图

screenshot
screenshot

下载Dictionary扩展crx文件

下载Dictionary扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        It is unconventional to always open a new tab to lookup for a word's meaning while you are reading your favorite blog or when you are simply browsing and you come across a word you want to know about. This extension is here to rescue. Select a word you want to look at and click on the extension button at the top and a beautiful popup will appear with the word definition and example. Isn't this cool and conventional? Install this extension and find word definitions on the go. [Open Source]                    

扩展基本信息

名称 Dictionary Dictionary
ID dlapopclhkmhhkmjhhaloapiiepbbnii
官方URL https://chromewebstore.google.com/detail/dictionary/dlapopclhkmhhkmjhhaloapiiepbbnii
简介 Select a word on the webpage and open popup to instantly look up in the dictionary
文件大小 289 KB
安装次数 17
当前版本 1.2.1
更新时间 2023-07-23
上架时间 2021-08-24
评分 5.00/5 共1次评分
开发者 SandeepKrSuman
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/SandeepKrSuman/dictionary-extension
帮助页面URL https://github.com/SandeepKrSuman/dictionary-extension/issues
隐私政策页面URL https://github.com/SandeepKrSuman/dictionary-extension/blob/master/PRIVACY.md
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dictionary",
    "version": "1.2.1",
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png"
        },
        "default_title": "Dictionary",
        "default_popup": "popup\/popup.html"
    },
    "description": "Select a word on the webpage and open popup to instantly look up in the dictionary",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "author": "SandeepKrSuman",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}