Instant Dictionary

View definition in both English and Chinese as you browse the web.

Instant Dictionaryคืออะไร?

Instant Dictionary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Peter Pi และคุณลักษณะหลักของมันคือ "View definition in both English and Chinese as you browse the web."

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

screenshot

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

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

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

                        IMPORTANT:
 - The chrome extension will not work in tabs that were open prior to installation. After installation, either reload your open tabs or restart Chrome.

Instant Dictionary helps to make the translation become more convenient.

Simply highlight the word you don't understand and see the definition in English and Chinese without going back and forth on tabs.                    

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

ชื่อ Instant Dictionary Instant Dictionary
ID hjpcapcphfbomgjkghdiiogelgikcmpa
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/instant-dictionary/hjpcapcphfbomgjkghdiiogelgikcmpa
คำอธิบาย View definition in both English and Chinese as you browse the web.
ขนาดไฟล์ 696 KB
จำนวนการติดตั้ง 121
เวอร์ชันปัจจุบัน 1.0.6
อัปเดตครั้งล่าสุด 2022-01-08
วันที่เผยแพร่ 2020-04-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Peter Pi
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant Dictionary",
    "version": "1.0.6",
    "description": "View definition in both English and Chinese as you browse the web.",
    "author": "Peter Pi",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "Styles.css"
            ],
            "js": [
                "content.js",
                "jquery-3.4.1.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}