MultiTranslate
Translate highlighted text
Wat is MultiTranslate?
MultiTranslate is een Chrome-extensie ontwikkeld door Jannis, en de belangrijkste functie is "Translate highlighted text".
Extensie Screenshots
Download het CRX-bestand van de extensie MultiTranslate
Download MultiTranslate-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension is not related to DeepL, Google nor Microsoft. How to translate text: - Mark some text and click on the icon in the upper right corner or - Select some text, right click and select the disired service in the context menu Please note that this addon does not work on chrome-internal pages and chrome.google.com
Basisinformatie over de Extensie
Naam | |
ID | ggfeeabglcmjoaokkomijmbaekfmeocc |
Officiële URL | https://chrome.google.com/webstore/detail/multitranslate/ggfeeabglcmjoaokkomijmbaekfmeocc |
Beschrijving | Translate highlighted text |
Bestandsgrootte | 68.59 KB |
Aantal Installaties | 703 |
Huidige Versie | 2.2.0 |
Laatst Bijgewerkt | 2020-04-07 |
Publicatiedatum | 2020-04-06 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Jannis |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | de,en,fr,nl,es,it,pl,pt-BR,pt-PT,ru,zh-CN,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "2.2.0", "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "64": "64.png", "96": "96.png", "128": "128.png" }, "permissions": [ "activeTab", "storage", "*:\/\/*\/*", "contextMenus", "webRequest", "webRequestBlocking" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "script.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+Y" }, "description": "Opens DeepL to translate text" } } } |