Depth Translator for DeepL
An Assistant to Translate Selected Texts with DeepL
Τι είναι το Depth Translator for DeepL;
Το Depth Translator for DeepL είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Faisal Ahmed, και η κύρια λειτουργία του είναι "An Assistant to Translate Selected Texts with DeepL".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Depth Translator for DeepL
Λήψη αρχείων επέκτασης Depth Translator for DeepL σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Depth Translator is an assistant extension for DeepL. You can invoke the translation in 3 ways: 1. By selecting texts, a popup icon would appear beside your mouse pointer - when you click the icon, you'll be redirected to DeepL in a new tab. 2. You can also select text and do the same from the context menu item. 3. The extension icon beside the address bar can also be clicked to translate selected text without leaving your current tab. Features: 1. One click translation. 2. Option to disable the icon popup. 3. Option to set a preferred language. 4. Option to invoke the icon only when alt or option key is pressed. 5. No annoying/persistent cookie confirmations in the mini preview window. The extension requires access to all sites in order to present the icon inside every webpage. You can disable this feature from the settings. If you have feedback or feature request, please send me an to email [email protected]. I hope this extension makes your browsing a little easier. * This extension or the developer is not affiliated with DeepL. I wanted to make this mainly for myself.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Depth Translator for DeepL |
ID | ngbebejjbijmijmhbbpkllcnjpgkjikl |
Επίσημο URL | https://chromewebstore.google.com/detail/depth-translator-for-deep/ngbebejjbijmijmhbbpkllcnjpgkjikl |
Περιγραφή | An Assistant to Translate Selected Texts with DeepL |
Μέγεθος Αρχείου | 15.49 KB |
Αριθμός Εγκαταστάσεων | 1,447 |
Τρέχουσα Έκδοση | 0.9.0 |
Τελευταία Ενημέρωση | 2020-10-20 |
Ημερομηνία Δημοσίευσης | 2020-10-20 |
Αξιολόγηση | 3.91/5 Συνολικά 11 Αξιολογήσεις |
Προγραμματιστής | Faisal Ahmed |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Depth Translator for DeepL", "description": "An Assistant to Translate Selected Texts with DeepL", "author": "Faisal Ahmed", "short_name": "Depth Translator", "version": "0.9.0", "permissions": [ "contextMenus", "activeTab", "storage" ], "content_security_policy": "default-src 'self' https:\/\/www.deepl.com\/", "background": { "scripts": [ "context.js" ] }, "icons": { "128": "deepl.png" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "script.js" ], "css": [ "content.css" ], "exclude_matches": [ "https:\/\/www.deepl.com\/*" ] } ], "web_accessible_resources": [ "deepl40.png" ], "browser_action": { "default_popup": "popup.html", "defaut_icon": "deepl.png" } } |