Dictionary
Use the WordNet dictionary to lookup the definition of selected words on a page.
Vad är Dictionary?
Dictionary är en Chrome-tillägg utvecklad av marc.goodman.pcc.edu, och dess huvudfunktion är "Use the WordNet dictionary to lookup the definition of selected words on a page.".
Tilläggsskärmbilder
Ladda ner Dictionary-förlängningens CRX-fil
Ladda ner Dictionary-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | jpmahklahimackogblepjgmljnfnjadb |
Officiell webbadress | https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb |
Beskrivning | Use the WordNet dictionary to lookup the definition of selected words on a page. |
Filstorlek | 12.35 KB |
Antal Installationer | 228 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2017-06-04 |
Publiceringsdatum | 2017-06-04 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | marc.goodman.pcc.edu |
Betalningssätt | free |
Tilläggswebbplats | http://www.cis233w.xyz/dict |
Stödda Språk | 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\/" } |