Dictionary

Use the WordNet dictionary to lookup the definition of selected words on a page.

Dictionaryคืออะไร?

Dictionary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย marc.goodman.pcc.edu และคุณลักษณะหลักของมันคือ "Use the WordNet dictionary to lookup the definition of selected words on a page."

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

screenshot

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

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

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

                        This is an example Dictionary Lookup extension based on WordNet. This is a demo for Portland Community College's course CIS 233W, JavaScript Programming II.                    

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

ชื่อ Dictionary Dictionary
ID jpmahklahimackogblepjgmljnfnjadb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb
คำอธิบาย Use the WordNet dictionary to lookup the definition of selected words on a page.
ขนาดไฟล์ 12.35 KB
จำนวนการติดตั้ง 228
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2017-06-04
วันที่เผยแพร่ 2017-06-04
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา marc.goodman.pcc.edu
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.cis233w.xyz/dict
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dictionary",
    "version": "0.1",
    "description": "Use the WordNet dictionary to lookup the definition of selected words on a page.",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        },
        "default_title": "dictionary"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "homepage_url": "http:\/\/www.cis233w.xyz\/dict\/"
}