Click dictionary

Double click on words to see their definition

Click dictionaryคืออะไร?

Click dictionary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย newdev และคุณลักษณะหลักของมันคือ "Double click on words to see their definition"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Click dictionary

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}