Dictionary

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

Hvad er Dictionary?

Dictionary er en Chrome-udvidelse udviklet af marc.goodman.pcc.edu, og dens hovedfunktion er "Use the WordNet dictionary to lookup the definition of selected words on a page.".

Udvidelsesskærmbilleder

screenshot

Download Dictionary-udvidelses-CRX-fil

Download Dictionary-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Dictionary Dictionary
ID jpmahklahimackogblepjgmljnfnjadb
Officiel URL https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb
Beskrivelse Use the WordNet dictionary to lookup the definition of selected words on a page.
Filstørrelse 12.35 KB
Antal Installationer 228
Nuværende Version 0.1
Senest Opdateret 2017-06-04
Udgivelsesdato 2017-06-04
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler marc.goodman.pcc.edu
Betalingsmetode free
Udvidelseswebsted http://www.cis233w.xyz/dict
Understøttede Sprog 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\/"
}