Dictionary
Use the WordNet dictionary to lookup the definition of selected words on a page.
Dictionaryとは何ですか?
Dictionaryはmarc.goodman.pcc.eduによって開発されたChromeの拡張機能で、その主な機能は「Use the WordNet dictionary to lookup the definition of selected words on a page.」です。
拡張機能のスクリーンショット
Dictionary拡張機能のCRXファイルをダウンロード
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.
拡張機能の基本情報
名前 | |
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\/" } |