Quick Define

Shows popup definition of selected term

Quick Defineคืออะไร?

Quick Define เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anton Samoylov และคุณลักษณะหลักของมันคือ "Shows popup definition of selected term"

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

screenshot
screenshot

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

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

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

                        The wisdom of humankind two clicks away! Select any text in Chrome to receive instant definition and answers; no need to copy and paste! Also you won't lose your context, as the definition is showed on the same page.                    

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

ชื่อ Quick Define Quick Define
ID dklgknckeahgflaffkncodfpjcignmin
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/quick-define/dklgknckeahgflaffkncodfpjcignmin
คำอธิบาย Shows popup definition of selected term
ขนาดไฟล์ 15.18 KB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2015-01-12
วันที่เผยแพร่ 2015-01-12
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Anton Samoylov
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Define",
    "description": "Shows popup definition of selected term",
    "version": "0.0.2",
    "permissions": [
        "contextMenus",
        "activeTab",
        "https:\/\/www.googleapis.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "page.js",
                "popup.js"
            ],
            "css": [
                "popup.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "QuickDefineLogoBlack128.png"
    },
    "manifest_version": 2
}