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文件

下载Vocabulary Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}