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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Vocabulist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}