Vocab Master

Reminds you vocabulary while you surfing.

What is Vocab Master?

Vocab Master is a Chrome extension developed by expercise Labs, and its main feature is "Reminds you vocabulary while you surfing.".

Extension Screenshots

screenshot
screenshot

Download Vocab Master Extension CRX File

Download Vocab Master extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Vocab Master Vocab Master
ID idchajmmmliappojgonadeffochffkge
Official URL https://chromewebstore.google.com/detail/vocab-master/idchajmmmliappojgonadeffochffkge
Description Reminds you vocabulary while you surfing.
File Size 756 KB
Installation Count 86
Current Version 1.2.2
Last Updated 2022-02-22
Publish Date 2017-05-24
Rating 4.20/5 Total 5 Ratings
Developer expercise Labs
Email [email protected]
Payment Type free
Extension Website http://expercise.com
Help Page URL https://github.com/ufuk/vocab-master
Supported Languages 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
    }
}