Vocabulary Highlighter

Highlight high frequency GRE vocabulary as you browse the web.

Vocabulary Highlighterคืออะไร?

Vocabulary Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย W9G และคุณลักษณะหลักของมันคือ "Highlight high frequency GRE vocabulary as you browse the web."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vocabulary Highlighter

ดาวน์โหลดไฟล์ส่วนขยาย 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
}