Dictionary

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

什麼是Dictionary?

Dictionary是由marc.goodman.pcc.edu開發的Chrome擴展程式,該擴展的主要功能是“Use the WordNet dictionary to lookup the definition of selected words on a page.”。

擴展截圖

screenshot

下載Dictionary擴展crx文件

下載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
官方網址 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\/"
}