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\/" } |