Reading for Vocabulary

This extension enables translation lookup with quizzes to facilitate vocabulary learning while reading a foreign language.

Reading for Vocabularyคืออะไร?

Reading for Vocabulary เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jhudgins และคุณลักษณะหลักของมันคือ "This extension enables translation lookup with quizzes to facilitate vocabulary learning while reading a foreign language."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Reading for Vocabulary ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Understanding language opens the world. Learning a foreign language will help you understand an entire population otherwise inaccessible. Language experts believe the best way to learn vocabulary is by reading -- a lot more fun than
the memorizing vocabulary lists. However, reading can be hard when you don't understand many of the words.

Use the Reading Vocabulary Extension to help you understand and learn vocabulary. Whenever you select a word (double click) the extension will present a list of possible translations. You choose the word that best fits the context, and the extension stores the native and foreign words.

After looking up 5 words, the extension will give you a quick matching quiz to review the words that you have learned. Simply drag and drop the matching words and then return to your reading. This quick review will make your reading maximally productive!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Reading for Vocabulary Reading for Vocabulary
ID mjodincinffdmdfpggddgikkpebfkodf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/reading-for-vocabulary/mjodincinffdmdfpggddgikkpebfkodf
คำอธิบาย This extension enables translation lookup with quizzes to facilitate vocabulary learning while reading a foreign language.
ขนาดไฟล์ 203 KB
จำนวนการติดตั้ง 241
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2015-12-05
วันที่เผยแพร่ 2015-12-05
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jhudgins
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reading for Vocabulary",
    "description": "This extension enables translation lookup with quizzes to facilitate vocabulary learning while reading a foreign language.",
    "version": "1.3",
    "author": "Jonathan Hudgins ",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "css": [
                "contentscript.css"
            ],
            "js": [
                "contentscript.js",
                "xregexp-all.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "notifications",
        "storage",
        "webRequestBlocking",
        "https:\/\/glosbe.com\/gapi\/translate?*"
    ],
    "web_accessible_resources": [
        "options.html"
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}