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
Eメール [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
}