Vocabulary.com Enhancer

Translations and other useful features for vocabulary.com (unofficial)

Vocabulary.com Enhancerคืออะไร?

Vocabulary.com Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Thor Galle และคุณลักษณะหลักของมันคือ "Translations and other useful features for vocabulary.com (unofficial)"

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

screenshot
screenshot
screenshot

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

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

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

                        This is an extension that adds useful features to the great vocabulary.com word learning service:

> Show translations in the learning game

Translations automatically show up in the word learning game. Click the language abbreviation to change language.

> Show your examples when practicing a specific list

If you added examples to a list you're practicing, they will show up in the answer section of words.

> Add words from any web page (NOTE: you need to be logged in into vocabulary.com to use this feature)

Select a word on any website, right click, and you'll be able to:
- Start learning the selected word(s)
- Add the word(s) to one of your lists (they will appear in a dropdown menu)
- Add the word(s) to a new list.

The sentence that contains the word will automatically be picked up and listed as an example usage of the word in vocabulary.com. (known bug: this doesn't work everywhere now. Will be fixed in a future version)

> Useful side links

The extension automatically adds links to other dictionaries and services like Dictionary.com, Thesaurus.com, The Urban Dictionary, GIPHY, YouGlish, Google Images, Wordnik, ... to further understand your words. They appear in the word game answer section and on definition pages.

> Leave a comment if you have a problem or would like to suggest another feature, or send a mail to the gmail account 'thorgalle'

> Note: this extension requires the permission to access all web pages you visit. It is only used to extract sentences around words you select. Source code is available for review at Github: https://github.com/th0rgall/voc-enhancer.

> Disclaimer: I, the developer, am not affiliated with vocabulary.com in any way. The use of this application is at your own risk.                    

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

ชื่อ Vocabulary.com Enhancer Vocabulary.com Enhancer
ID diddacjdgklfjgnlmknacnakjcgdiegn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vocabularycom-enhancer/diddacjdgklfjgnlmknacnakjcgdiegn
คำอธิบาย Translations and other useful features for vocabulary.com (unofficial)
ขนาดไฟล์ 128 KB
จำนวนการติดตั้ง 1,245
เวอร์ชันปัจจุบัน 0.6.1
อัปเดตครั้งล่าสุด 2019-06-11
วันที่เผยแพร่ 2019-06-05
คะแนน 4.11/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Thor Galle
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vocabulary.com Enhancer",
    "short_name": "Voc.com Enhancer",
    "author": "Thor Galle",
    "description": "Translations and other useful features for vocabulary.com (unofficial)",
    "icons": {
        "16": "icons\/favicon-16x16.png",
        "32": "icons\/favicon-32x32.png",
        "64": "icons\/favicon-64x64.png",
        "128": "icons\/favicon-128x128.png"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content\/voc-adder.js"
            ],
            "css": [
                "styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.vocabulary.com\/*"
            ],
            "js": [
                "content\/misc.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.vocabulary.com\/",
                "*:\/\/*.vocabulary.com\/play\/",
                "*:\/\/www.vocabulary.com\/lists\/*\/practice*"
            ],
            "js": [
                "content\/element-creator.js",
                "content\/quiz-injector.js",
                "common.js"
            ],
            "css": [
                "styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.vocabulary.com\/dictionary\/*"
            ],
            "js": [
                "api\/translate.js",
                "content\/element-creator.js",
                "content\/definition-injector.js",
                "common.js"
            ],
            "css": [
                "styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.vocabulary.com\/lists\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.vocabulary.com\/lists\/*\/edit"
            ],
            "js": [
                "api\/translate.js",
                "content\/element-creator.js",
                "content\/list-injector.js",
                "common.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "notifications",
        "*:\/\/*.vocabulary.com\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "web_accessible_resources": [
        "icons\/*"
    ],
    "version": "0.6.1"
}