Vocabulary Highlighter

Highlight high frequency GRE vocabulary as you browse the web.

Was ist Vocabulary Highlighter?

Vocabulary Highlighter ist eine Chrome-Erweiterung, die von W9G entwickelt wurde, und ihr Hauptmerkmal ist "Highlight high frequency GRE vocabulary as you browse the web.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Vocabulary Highlighter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Vocabulary Highlighter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Vocabulary Highlighter Vocabulary Highlighter
ID pajikbgjooomggbhdalmlgiimicopmdi
Offizielle URL https://chromewebstore.google.com/detail/vocabulary-highlighter/pajikbgjooomggbhdalmlgiimicopmdi
Beschreibung Highlight high frequency GRE vocabulary as you browse the web.
Dateigröße 66.9 KB
Installationsanzahl 789
Aktuelle Version 3.0
Letztes Update 2019-09-22
Veröffentlichungsdatum 2019-09-22
Bewertung 4.29/5 Insgesamt 7 Bewertungen
Entwickler W9G
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}