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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
    }
}