Vocab Master
Reminds you vocabulary while you surfing.
Wat is Vocab Master?
Vocab Master is een Chrome-extensie ontwikkeld door expercise Labs, en de belangrijkste functie is "Reminds you vocabulary while you surfing.".
Extensie Screenshots
Download het CRX-bestand van de extensie Vocab Master
Download Vocab Master-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Vocab Master |
ID | idchajmmmliappojgonadeffochffkge |
Officiële URL | https://chromewebstore.google.com/detail/vocab-master/idchajmmmliappojgonadeffochffkge |
Beschrijving | Reminds you vocabulary while you surfing. |
Bestandsgrootte | 756 KB |
Aantal Installaties | 86 |
Huidige Versie | 1.2.2 |
Laatst Bijgewerkt | 2022-02-22 |
Publicatiedatum | 2017-05-24 |
Beoordeling | 4.20/5 Totaal 5 Beoordelingen |
Ontwikkelaar | expercise Labs |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://expercise.com |
Help Pagina-URL | https://github.com/ufuk/vocab-master |
Ondersteunde Talen | 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 } } |