Dictionary
Use the WordNet dictionary to lookup the definition of selected words on a page.
Apa itu Dictionary?
Dictionary adalah ekstensi Chrome yang dikembangkan oleh marc.goodman.pcc.edu, dan fitur utamanya adalah "Use the WordNet dictionary to lookup the definition of selected words on a page.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Dictionary
Unduh file ekstensi Dictionary dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | jpmahklahimackogblepjgmljnfnjadb |
URL Resmi | https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb |
Deskripsi | Use the WordNet dictionary to lookup the definition of selected words on a page. |
Ukuran File | 12.35 KB |
Jumlah Instalasi | 228 |
Versi Saat Ini | 0.1 |
Terakhir Diperbarui | 2017-06-04 |
Tanggal Publikasi | 2017-06-04 |
Penilaian | 1.00/5 Total 1 Penilaian |
Pengembang | marc.goodman.pcc.edu |
Tipe Pembayaran | free |
Situs Ekstensi | http://www.cis233w.xyz/dict |
Bahasa yang Didukung | 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\/" } |