Dictionary Tool

This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension

Dictionary Toolคืออะไร?

Dictionary Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://stlwebsitedevelopment.com และคุณลักษณะหลักของมันคือ "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Dictionary Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A chrome extension that allows you to highlight a word on the page, click on my extension and get a definition of the word you have highlighted. The extension is connected to a dictionary database and uses a special algorithm to retrieve the highlighted text, query the database and retrieve the definition for you in an elegant, simple, and well designed chrome extension.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Dictionary Tool Dictionary Tool
ID edifcpjfgilelnbmcihdcfhggmjodfmh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh
คำอธิบาย This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
ขนาดไฟล์ 181 KB
จำนวนการติดตั้ง 577
เวอร์ชันปัจจุบัน 2.1
อัปเดตครั้งล่าสุด 2023-01-26
วันที่เผยแพร่ 2017-07-31
คะแนน 2.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://stlwebsitedevelopment.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dictionary Tool",
    "description": "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension",
    "version": "2.1",
    "author": "Leon Krugliakov",
    "icons": {
        "16": "icons\/icon.png",
        "32": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/main.js",
                "scripts\/jquery.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}