Dictionary
Use the WordNet dictionary to lookup the definition of selected words on a page.
Was ist Dictionary?
Dictionary ist eine Chrome-Erweiterung, die von marc.goodman.pcc.edu entwickelt wurde, und ihr Hauptmerkmal ist "Use the WordNet dictionary to lookup the definition of selected words on a page.".
Erweiterungsscreenshots
Dictionary-Erweiterungs-CRX-Datei herunterladen
Laden Sie Dictionary-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | jpmahklahimackogblepjgmljnfnjadb |
Offizielle URL | https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb |
Beschreibung | Use the WordNet dictionary to lookup the definition of selected words on a page. |
Dateigröße | 12.35 KB |
Installationsanzahl | 228 |
Aktuelle Version | 0.1 |
Letztes Update | 2017-06-04 |
Veröffentlichungsdatum | 2017-06-04 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | marc.goodman.pcc.edu |
Zahlungsart | free |
Erweiterungswebsite | http://www.cis233w.xyz/dict |
Unterstützte Sprachen | 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\/" } |