Dictionary
Use the WordNet dictionary to lookup the definition of selected words on a page.
Dictionary là gì?
Dictionary là một tiện ích mở rộng Chrome được phát triển bởi marc.goodman.pcc.edu, và tính năng chính của nó là "Use the WordNet dictionary to lookup the definition of selected words on a page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Dictionary
Tải xuống các tệp mở rộng Dictionary dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jpmahklahimackogblepjgmljnfnjadb |
URL Chính Thức | https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb |
Mô tả | Use the WordNet dictionary to lookup the definition of selected words on a page. |
Kích Thước Tệp | 12.35 KB |
Số Lần Cài Đặt | 228 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2017-06-04 |
Ngày Phát Hành | 2017-06-04 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | marc.goodman.pcc.edu |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.cis233w.xyz/dict |
Ngôn Ngữ Được Hỗ Trợ | 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\/" } |