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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Vocabulist
Λήψη αρχείων επέκτασης Vocabulist σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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 } |