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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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\/"
}