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
官方網址 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"
    ]
}