Dictionary

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

What is Dictionary?

Dictionary is a Chrome extension developed by marc.goodman.pcc.edu, and its main feature is "Use the WordNet dictionary to lookup the definition of selected words on a page.".

Extension Screenshots

screenshot

Download Dictionary Extension CRX File

Download Dictionary extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Dictionary Dictionary
ID jpmahklahimackogblepjgmljnfnjadb
Official URL https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb
Description Use the WordNet dictionary to lookup the definition of selected words on a page.
File Size 12.35 KB
Installation Count 228
Current Version 0.1
Last Updated 2017-06-04
Publish Date 2017-06-04
Rating 1.00/5 Total 1 Ratings
Developer marc.goodman.pcc.edu
Payment Type free
Extension Website http://www.cis233w.xyz/dict
Supported Languages 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\/"
}