Vocab Master
Reminds you vocabulary while you surfing.
Cos'è Vocab Master?
Vocab Master è un'estensione di Chrome sviluppata da expercise Labs, e la sua funzione principale è "Reminds you vocabulary while you surfing.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Vocab Master
Scarica i file di estensione Vocab Master in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Vocab Master |
ID | idchajmmmliappojgonadeffochffkge |
URL Ufficiale | https://chromewebstore.google.com/detail/vocab-master/idchajmmmliappojgonadeffochffkge |
Descrizione | Reminds you vocabulary while you surfing. |
Dimensione del File | 756 KB |
Conteggio Installazioni | 86 |
Versione Corrente | 1.2.2 |
Ultimo Aggiornamento | 2022-02-22 |
Data di Pubblicazione | 2017-05-24 |
Valutazione | 4.20/5 Totale 5 Valutazioni |
Sviluppatore | expercise Labs |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://expercise.com |
URL della Pagina di Aiuto | https://github.com/ufuk/vocab-master |
Lingue Supportate | 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 } } |