Vocab Master
Reminds you vocabulary while you surfing.
什麼是Vocab Master?
Vocab Master是由expercise Labs開發的Chrome擴展程式,該擴展的主要功能是“Reminds you vocabulary while you surfing.”。
擴展截圖
下載Vocab Master擴展crx文件
下載Vocab Master擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Reminds you English vocabulary while you surfing. Activate reminder and set reminder period. Everytime when period ends Vocab Master will intercept your web page request, and show a random vocabulary from vocabulary list that you selected on options page. Most of vocabulary items have example usages beside simple definition in English. Vocab Master is open sourced on GitHub. https://github.com/ufuk/vocab-master
擴展基本資訊
名稱 | Vocab Master |
ID | idchajmmmliappojgonadeffochffkge |
官方網址 | https://chromewebstore.google.com/detail/vocab-master/idchajmmmliappojgonadeffochffkge |
簡介 | Reminds you vocabulary while you surfing. |
檔案大小 | 756 KB |
安裝次數 | 86 |
目前版本 | 1.2.2 |
更新時間 | 2022-02-22 |
上架時間 | 2017-05-24 |
評分 | 4.20/5 共 5 次評分 |
開發者 | expercise Labs |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://expercise.com |
說明頁面URL | https://github.com/ufuk/vocab-master |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Vocab Master", "description": "Reminds you vocabulary while you surfing.", "version": "1.2.2", "author": "Ufuk Uzun", "background": { "persistent": true, "scripts": [ "main.js", "js.cookie.js" ] }, "browser_action": { "default_icon": "vocab-icon.png", "default_popup": "options.html" }, "web_accessible_resources": [ "intercepting-page.html" ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "webRequestBlocking" ], "icons": { "256": "vocab-icon.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |