Dictionary

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

Cos'è Dictionary?

Dictionary è un'estensione di Chrome sviluppata da marc.goodman.pcc.edu, e la sua funzione principale è "Use the WordNet dictionary to lookup the definition of selected words on a page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Dictionary

Scarica i file di estensione Dictionary in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Dictionary Dictionary
ID jpmahklahimackogblepjgmljnfnjadb
URL Ufficiale https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb
Descrizione Use the WordNet dictionary to lookup the definition of selected words on a page.
Dimensione del File 12.35 KB
Conteggio Installazioni 228
Versione Corrente 0.1
Ultimo Aggiornamento 2017-06-04
Data di Pubblicazione 2017-06-04
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore marc.goodman.pcc.edu
Tipo di Pagamento free
Sito Web dell'Estensione http://www.cis233w.xyz/dict
Lingue Supportate 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\/"
}