Dictionary

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

Wat is Dictionary?

Dictionary is een Chrome-extensie ontwikkeld door marc.goodman.pcc.edu, en de belangrijkste functie is "Use the WordNet dictionary to lookup the definition of selected words on a page.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Dictionary

Download Dictionary-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Dictionary Dictionary
ID jpmahklahimackogblepjgmljnfnjadb
Officiële URL https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb
Beschrijving Use the WordNet dictionary to lookup the definition of selected words on a page.
Bestandsgrootte 12.35 KB
Aantal Installaties 228
Huidige Versie 0.1
Laatst Bijgewerkt 2017-06-04
Publicatiedatum 2017-06-04
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar marc.goodman.pcc.edu
Betalingswijze free
Extensiewebsite http://www.cis233w.xyz/dict
Ondersteunde Talen 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\/"
}