Double Click Dictionary

Checking the lexical item on any websites using double click

什麼是Double Click Dictionary?

Double Click Dictionary是由Vuong Nguyen開發的Chrome擴展程式,該擴展的主要功能是“Checking the lexical item on any websites using double click”。

擴展截圖

screenshot
screenshot

下載Double Click Dictionary擴展crx文件

下載Double Click Dictionary擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A dictionary that works on any website. Simply double click to fetch the meaning, pronunciation. It currently supports 5 in 1 dictionaries including English - Vietnamese, English - English, Collocation Dictionary, Basic Dictionary and Thesaurus.                    

擴展基本資訊

名稱 Double Click Dictionary Double Click Dictionary
ID mhodfiapdkckpndblmmajncefllgpcjm
官方網址 https://chromewebstore.google.com/detail/double-click-dictionary/mhodfiapdkckpndblmmajncefllgpcjm
簡介 Checking the lexical item on any websites using double click
檔案大小 53.53 KB
安裝次數 220
目前版本 0.2
更新時間 2023-07-14
上架時間 2023-03-25
評分 5.00/5 共 4 次評分
開發者 Vuong Nguyen
電子郵箱 [email protected]
付費類型 free
擴展官網 https://tudien.net
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Double Click Dictionary",
    "author": "Vuong Nguyen",
    "homepage_url": "https:\/\/tudien.net",
    "action": {
        "default_title": "T\u00f9y ch\u1ec9nh t\u1eeb \u0111i\u1ec3n",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "\/static\/images\/tudien16.png",
        "32": "\/static\/images\/tudien32.png",
        "48": "\/static\/images\/tudien48.png",
        "128": "\/static\/images\/tudien128.png"
    },
    "manifest_version": 3,
    "version": "0.2",
    "description": "Checking the lexical item on any websites using double click",
    "permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "content.js",
                "style.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "all_frames": true
        }
    ]
}