Click dictionary

Double click on words to see their definition

什么是Click dictionary?

Click dictionary是由newdev开发的Chrome扩展程序,该扩展的主要功能是“Double click on words to see their definition”。

扩展截图

screenshot

下载Click dictionary扩展crx文件

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

扩展使用说明

                        This extension saves you time when reading text on a web page, in a foreign language, by allowing you to double click on the words you don't understand and providing you an intuitive translation popup.                    

扩展基本信息

名称 Click dictionary Click dictionary
ID edeopnindailmgjakdinjklkakmhlmpg
官方URL https://chromewebstore.google.com/detail/click-dictionary/edeopnindailmgjakdinjklkakmhlmpg
简介 Double click on words to see their definition
文件大小 33.22 KB
安装次数 1,570
当前版本 1.4.3
更新时间 2023-01-31
上架时间 2017-10-31
评分 4.09/5 共11次评分
开发者 newdev
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "newDev",
    "manifest_version": 3,
    "name": "Click dictionary",
    "short_name": "Click dict.",
    "description": "Double click on words to see their definition",
    "version": "1.4.3",
    "action": {
        "default_popup": "\/src\/modules\/action\/action.html"
    },
    "icons": {
        "48": "\/src\/icon\/icon48.png",
        "128": "\/src\/icon\/icon128.png"
    },
    "background": {
        "service_worker": "\/src\/modules\/dictionary-popup\/eventPage.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "\/src\/modules\/dictionary-popup\/dictionary-popup.css"
            ],
            "js": [
                "\/src\/modules\/dictionary-popup\/dictionary-popup.js"
            ]
        }
    ],
    "options_page": "\/src\/modules\/options\/options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "\/src\/utils\/languageSettings.js",
                "\/src\/utils\/htmlUtils.js",
                "\/src\/utils\/resultTable.js",
                "\/src\/utils\/disabledUrlService.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}