Double Click Dictionary

Checking the lexical item on any websites using double click

Double Click Dictionary là gì?

Double Click Dictionary là một tiện ích mở rộng Chrome được phát triển bởi Vuong Nguyen, và tính năng chính của nó là "Checking the lexical item on any websites using double click".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Double Click Dictionary

Tải xuống các tệp mở rộng Double Click Dictionary dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Double Click Dictionary Double Click Dictionary
ID mhodfiapdkckpndblmmajncefllgpcjm
URL Chính Thức https://chromewebstore.google.com/detail/double-click-dictionary/mhodfiapdkckpndblmmajncefllgpcjm
Mô tả Checking the lexical item on any websites using double click
Kích Thước Tệp 53.53 KB
Số Lần Cài Đặt 220
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2023-07-14
Ngày Phát Hành 2023-03-25
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Vuong Nguyen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://tudien.net
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}