Vocab Master

Reminds you vocabulary while you surfing.

Vocab Masterคืออะไร?

Vocab Master เป็นส่วนขยายของ Chrome ที่พัฒนาโดย expercise Labs และคุณลักษณะหลักของมันคือ "Reminds you vocabulary while you surfing."

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

screenshot
screenshot

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

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

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

                        Reminds you English vocabulary while you surfing. Activate reminder and set reminder period. Everytime when period ends Vocab Master will intercept your web page request, and show a random vocabulary from vocabulary list that you selected on options page. Most of vocabulary items have example usages beside simple definition in English.

Vocab Master is open sourced on GitHub.

https://github.com/ufuk/vocab-master                    

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

ชื่อ Vocab Master Vocab Master
ID idchajmmmliappojgonadeffochffkge
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vocab-master/idchajmmmliappojgonadeffochffkge
คำอธิบาย Reminds you vocabulary while you surfing.
ขนาดไฟล์ 756 KB
จำนวนการติดตั้ง 86
เวอร์ชันปัจจุบัน 1.2.2
อัปเดตครั้งล่าสุด 2022-02-22
วันที่เผยแพร่ 2017-05-24
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา expercise Labs
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://expercise.com
URL หน้าช่วยเหลือ https://github.com/ufuk/vocab-master
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vocab Master",
    "description": "Reminds you vocabulary while you surfing.",
    "version": "1.2.2",
    "author": "Ufuk Uzun",
    "background": {
        "persistent": true,
        "scripts": [
            "main.js",
            "js.cookie.js"
        ]
    },
    "browser_action": {
        "default_icon": "vocab-icon.png",
        "default_popup": "options.html"
    },
    "web_accessible_resources": [
        "intercepting-page.html"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "256": "vocab-icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}