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 |
官方URL | 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 } } |