Vocabulary Highlighter

Highlight high frequency GRE vocabulary as you browse the web.

Vocabulary Highlighter란 무엇입니까?

Vocabulary Highlighter은(는) W9G에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight high frequency GRE vocabulary as you browse the web."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Vocabulary Highlighter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Vocabulary Highlighter highlights high-frequency GRE vocabulary as you browse the web. It currently supports 2 vocabulary lists: 

1. Magoosh's GRE Vocabulary (~1000 words) 
2. Hong Bao Shu (红宝书/紅寶書, ~6500 words)
3. Barron's GRE Word List


You can select either word list in the Extension Options page.
You can always choose to turn on and off the switch to easily add/remove the yellow highlights.

Please feel free to reach out to me at [email protected] if you have any question or suggestion.                    

확장 프로그램 기본 정보

이름 Vocabulary Highlighter Vocabulary Highlighter
ID pajikbgjooomggbhdalmlgiimicopmdi
공식 URL https://chromewebstore.google.com/detail/vocabulary-highlighter/pajikbgjooomggbhdalmlgiimicopmdi
설명 Highlight high frequency GRE vocabulary as you browse the web.
파일 크기 66.9 KB
설치 횟수 789
현재 버전 3.0
최근 업데이트 2019-09-22
출시 날짜 2019-09-22
평점 4.29/5 총 7 개의 평점
개발자 W9G
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vocabulary Highlighter",
    "version": "3.0",
    "description": "Highlight high frequency GRE vocabulary as you browse the web.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "wordlist.js",
                "content.js"
            ],
            "run_at": "document_end",
            "css": [
                "css\/highlighter.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Vocabulary Highlighter",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2
}