Vocab Master

Reminds you vocabulary while you surfing.

Vocab Master란 무엇입니까?

Vocab Master은(는) expercise Labs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reminds you vocabulary while you surfing."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Vocab Master 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
    }
}