Vocabulist

This extension provides a translation in the form of a tool-tip or 'speech bubble' that appears above words in the text of web-pages

Vocabulist란 무엇입니까?

Vocabulist은(는) http://www.ejectamenta.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension provides a translation in the form of a tool-tip or 'speech bubble' that appears above words in the text of web-pages"입니다.

확장 프로그램 스크린샷

screenshot

Vocabulist 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The Vocabulist extension can help you with learning languages by providing instant translations of difficult words while you are reading webpages in a foreign language. This occurs when the mouse hovers over a word and therefore the text can be read with translation help when needed. 

The extension also allows you to highlight and select words, sentences or paragraphs on the webpage for translation. The extension can also speak the translated words, so can actually also be used as a page reader as well. 

39 languages are supported from Arabic (العربية) to Vietnamese (Tiếng Việt).

A bookmarklet is also provided at  the ejectamenta.com website as an alternative.

It could be that the service reaches the limit of free translations. If you find the application useful and don't want to be limited then please contact me on the support tab.                    

확장 프로그램 기본 정보

이름 Vocabulist Vocabulist
ID pfjckmgdglfccifnkkpchjnpkeggpjml
공식 URL https://chrome.google.com/webstore/detail/vocabulist/pfjckmgdglfccifnkkpchjnpkeggpjml
설명 This extension provides a translation in the form of a tool-tip or 'speech bubble' that appears above words in the text of web-pages
파일 크기 129 KB
설치 횟수 110
현재 버전 2.1
최근 업데이트 2020-05-30
출시 날짜 2020-05-30
평점 3.33/5 총 3 개의 평점
개발자 http://www.ejectamenta.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ejectamenta.com/language-learning/vocabulist-bookmarklet/
도움말 페이지 URL https://ejectamenta.com/about/terms-of-service/
개인정보 보호 정책 페이지 URL http://www.ejectamenta.com/About-us/privacy-policy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vocabulist",
    "description": "This extension provides a translation in the form of a tool-tip or 'speech bubble' that appears above words in the text of web-pages",
    "version": "2.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Vocabulist PopTranslator",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "popup.css"
            ],
            "js": [
                "jquery.min.js",
                "popup.js",
                "hoverIntent-min.js",
                "xregexp-min.js",
                "xregexp-unicode-basemin.js",
                "xregexp-unicode-scriptsmin.js",
                "translatehelper.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "background",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "http:\/\/api.microsofttranslator.com\/V2\/Ajax.svc\/Translate\/*"
    ],
    "manifest_version": 2
}