Vocabulary in Context

Save vocabulary in its context and review them later. A highly efficient tool to improve vocabulary when learning foreign language.

Vocabulary in Contextคืออะไร?

Vocabulary in Context เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SimBust และคุณลักษณะหลักของมันคือ "Save vocabulary in its context and review them later. A highly efficient tool to improve vocabulary when learning foreign language."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Vocabulary in Context allows you to save words in their context as you read news or articles on Internet. You can then review those vocabularies later from any PC or browser. It is a highly efficient way to increase your vocabulary since the words are used in the context that you are interested in. It is a great tool for learning foreign language.

How to use:

1. Click extension icon and login to the cloud.

2. While you read news or articles in the browser, select words with mouse while holding Ctrl (Command for Mac) key.

3. Visit the cloud and review saved words in their contexts.


########## Change log ##########
2013-12-27 v1.4 Now works on https URL. Mac OS X is supported.
2017-07-02 v1.5 Saving word in HTTPS page now works
2017-10-30 v1.6 Added context menu to be used in case hotkey conflicts with other extension
2017-12-02 v1.7 Added ability to optionally open Memorize page daily, automatically
2018-02-19 v1.8 Added ability to manually save vocabulary; no longer constantly prompt user to log in when saving vocabulary after session expires                    

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

ชื่อ Vocabulary in Context Vocabulary in Context
ID pmgakkgpjmhoblncenjjjmmdaoeefpjk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vocabulary-in-context/pmgakkgpjmhoblncenjjjmmdaoeefpjk
คำอธิบาย Save vocabulary in its context and review them later. A highly efficient tool to improve vocabulary when learning foreign language.
ขนาดไฟล์ 112 KB
จำนวนการติดตั้ง 1,697
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2018-02-19
วันที่เผยแพร่ 2018-02-19
คะแนน 4.04/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา SimBust
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://simbust.com/index.php?c=voc
URL หน้านโยบายความเป็นส่วนตัว https://simbust.com/monami/privacy-policy.html
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vocabulary in Context",
    "description": "Save vocabulary in its context and review them later. A highly efficient tool to improve vocabulary when learning foreign language.",
    "version": "1.8",
    "homepage_url": "http:\/\/simbust.com\/index.php?c=voc",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "file:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vocab_content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "options_page": "vocab_options.html",
    "content_security_policy": "script-src 'self' https:\/\/code.jquery.com https:\/\/maxcdn.bootstrapcdn.com https:\/\/cdnjs.cloudflare.com; object-src 'self'",
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/localhost\/",
        "http:\/\/simbust.com\/"
    ],
    "browser_action": {
        "default_icon": "icon_48.png",
        "default_title": "Show Vocabulary in Context Menu",
        "default_popup": "popup\/popup_menu.html"
    },
    "web_accessible_resources": [
        "icon_16.png",
        "vocab_content.css"
    ]
}