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」です。
拡張機能のスクリーンショット
Vocabulist拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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 } |