Vocab

Translate highlighted text and store the translation in a glossary book. A random glossary card shows when opening a web page.

ما هو Vocab؟

Vocab هو إضافة Chrome تم تطويرها بواسطة Lu، والميزة الرئيسية لها هي "Translate highlighted text and store the translation in a glossary book. A random glossary card shows when opening a web page.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Vocab

قم بتنزيل ملفات الامتداد Vocab بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Selected text on web page and translate it on context menu. The translation result will be shown in a floating modal, and can be added to a glossary book by clicking '+' button or pronounced by clicking the speaker button.

Please also take a look at the settings from popover, where you can configure several settings for the extension, including:
1. the source and target languages, currently supports 24 languages
2. displaying a random glossary card every time you open a new page. This can help you to memorize and learn the vocabularies, since the new vocabularies is presented to you from time to time.
3. Support setting a CSS selector, so that every time the element of the CSS selector is clicked, a random glossary card will also show up. This can furtherly increase the exposure of the vocabularies when you are browsing on internet

The added vocabularies can also be viewed, searched, edited, exported, imported and read aloud repeatedly in the vocabulary viewer from popover.

There is also a simple statistics view from popover, showing how frequently you added new vocabularies to the glossary book.

The translation is achieved by google translation free API.                    

معلومات أساسية عن التمديد

الاسم Vocab Vocab
ID okfkeagmfgmcmfomlifdoojmidpmjnai
عنوان URL الرسمي https://chromewebstore.google.com/detail/vocab/okfkeagmfgmcmfomlifdoojmidpmjnai
الوصف Translate highlighted text and store the translation in a glossary book. A random glossary card shows when opening a web page.
حجم الملف 1.13 MB
عدد التثبيتات 50
النسخة الحالية 3.7.0
آخر تحديث 2023-12-16
تاريخ النشر 2020-07-04
المطور Lu
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة id,ms,de,en,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "3.7.0",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "author": "Lu",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "background": {
        "service_worker": "service-worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "contextMenus",
        "sidePanel"
    ],
    "omnibox": {
        "keyword": "vb"
    },
    "action": {
        "default_title": "Vocab",
        "default_popup": "pages\/popover\/index.html",
        "default_icon": {
            "16": "assets\/icons\/icon-16.png",
            "48": "assets\/icons\/icon-48.png",
            "128": "assets\/icons\/icon-128.png"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self';object-src 'self';"
    }
}