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 |
Eメール | [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 } } |