Dictionary

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

Τι είναι το Dictionary;

Το Dictionary είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον marc.goodman.pcc.edu, και η κύρια λειτουργία του είναι "Use the WordNet dictionary to lookup the definition of selected words on a page.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Dictionary

Λήψη αρχείων επέκτασης Dictionary σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Dictionary Dictionary
ID jpmahklahimackogblepjgmljnfnjadb
Επίσημο URL https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb
Περιγραφή Use the WordNet dictionary to lookup the definition of selected words on a page.
Μέγεθος Αρχείου 12.35 KB
Αριθμός Εγκαταστάσεων 228
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2017-06-04
Ημερομηνία Δημοσίευσης 2017-06-04
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής marc.goodman.pcc.edu
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.cis233w.xyz/dict
Υποστηριζόμενες Γλώσσες 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\/"
}