Cambridge Dictionary

Look up selected text in 'Cambridge Dictionary' page.

Cambridge Dictionaryคืออะไร?

Cambridge Dictionary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tan Kan และคุณลักษณะหลักของมันคือ "Look up selected text in 'Cambridge Dictionary' page."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Look up selected text in https://dictionary.cambridge.org, using predefined dictionary.
While in Cambridge Dictionary page, automatically focus on search box when typing.

When popup tab is closed, previous active tab will be active again.
This is very helpful if you are in middle of handful of tabs.

What's new:
Arrow keys (Up - Down) can be used to select word in suggestion pop-up.                    

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

ชื่อ Cambridge Dictionary Cambridge Dictionary
ID dbiljoifjihhnghopaokjicepkcdfglo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cambridge-dictionary/dbiljoifjihhnghopaokjicepkcdfglo
คำอธิบาย Look up selected text in 'Cambridge Dictionary' page.
ขนาดไฟล์ 48.39 KB
จำนวนการติดตั้ง 4,000
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2020-06-11
วันที่เผยแพร่ 2020-06-11
คะแนน 5.00/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Tan Kan
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cambridge Dictionary",
    "version": "1.3",
    "description": "Look up selected text in 'Cambridge Dictionary' page.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/dictionary.cambridge.org\/*"
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/cambridge-icon-128.png",
        "default_title": "Cambridge Dictionary",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icons\/cambridge-icon-128.png"
    }
}