Dictionary

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

Qu'est-ce que Dictionary ?

Dictionary est une extension Chrome développée par marc.goodman.pcc.edu, et sa fonction principale est "Use the WordNet dictionary to lookup the definition of selected words on a page.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Dictionary

Téléchargez les fichiers d'extension Dictionary au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Dictionary Dictionary
ID jpmahklahimackogblepjgmljnfnjadb
URL Officiel https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb
Description Use the WordNet dictionary to lookup the definition of selected words on a page.
Taille du Fichier 12.35 KB
Nombre d'Installations 228
Version Actuelle 0.1
Dernière Mise à Jour 2017-06-04
Date de Publication 2017-06-04
Évaluation 1.00/5 Total 1 Évaluations
Développeur marc.goodman.pcc.edu
Type de Paiement free
Site Web de l'Extension http://www.cis233w.xyz/dict
Langues Prises en Charge 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\/"
}