DeepL Translate
DeepL translate for Chrome
DeepL Translate क्या है?
DeepL Translate https://royli.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "DeepL translate for Chrome"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में DeepL Translate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
利用 DeepL 接口翻译网页。 使用方法:https://github.com/geekdada/a-translator-chrome-extension == 特性 == 1. 支持收费和免费接口; 2. 支持配置腾讯云 OCR 进行文字识别; 注意:您需要自己购买 DeepL API 使用权限。
एक्सटेंशन की मूल जानकारी
नाम | DeepL Translate |
ID | bpcbgnkijachkbknbhjmijehipcphndd |
आधिकारिक URL | https://chromewebstore.google.com/detail/deepl-translate/bpcbgnkijachkbknbhjmijehipcphndd |
विवरण | DeepL translate for Chrome |
फ़ाइल का आकार | 1.72 MB |
स्थापना संख्या | 747 |
वर्तमान संस्करण | 0.4.2 |
अंतिम अपडेट | 2023-02-25 |
प्रकाशन तिथि | 2021-02-16 |
रेटिंग | 4.00/5 कुल 3 रेटिंग्स |
डेवलपर | https://royli.dev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://royli.dev/ |
सहायता पृष्ठ URL | https://royli.dev/ |
समर्थित भाषाएँ | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DeepL Translate", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "activeTab", "contextMenus" ], "options_ui": { "page": "options.html", "chrome_style": false, "open_in_tab": true }, "background": { "page": "background.html" }, "browser_action": { "default_icon": { "128": "icon-128.png" }, "default_title": "DeepL Translate" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "contentScript.bundle.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "content.styles.css", "icon-128.png", "icon-34.png" ], "commands": { "open_application": { "description": "\u6253\u5f00\u5e94\u7528", "suggested_key": { "default": "Ctrl+Shift+W", "mac": "MacCtrl+Command+W" } }, "toggle_ocr": { "description": "\u5f00\u542f OCR \u8bc6\u522b", "suggested_key": { "default": "Ctrl+Shift+E", "mac": "MacCtrl+Command+E" } } }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "DeepL translate for Chrome", "version": "0.4.2" } |