CapTube (Dual Captions for YouTube)
Dual subtitles with AI-enabled translations
CapTube (Dual Captions for YouTube) क्या है?
CapTube (Dual Captions for YouTube) Dan Chen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Dual subtitles with AI-enabled translations"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CapTube (Dual Captions for YouTube) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Dual captions for YouTube || YouTube 雙語字幕 • 整合騰訊翻譯 (Support Tencent Translation) • 整合 DeepL 翻譯 (Support DeepL Translation) 未來改版預計提供更彈性設定(語言、顏色、…) Rich options (flexible languages, color, background, etc) is on the way... ---------------- 本套件為開源專案 (Open Source on GitHub) https://github.com/dannvix/CapTube ---------------- 使用第三方翻譯服務(如騰訊及 DeepL)需自行申請 API Keys API keys required for third-party translations (Tencent, DeepL, etc)
एक्सटेंशन की मूल जानकारी
नाम | CapTube (Dual Captions for YouTube) |
ID | hbhkmnepjaoiamapfdbhpkjendeeegbb |
आधिकारिक URL | https://chromewebstore.google.com/detail/captube-dual-captions-for/hbhkmnepjaoiamapfdbhpkjendeeegbb |
विवरण | Dual subtitles with AI-enabled translations |
फ़ाइल का आकार | 70.8 KB |
स्थापना संख्या | 1,545 |
वर्तमान संस्करण | 1.2.3 |
अंतिम अपडेट | 2020-05-13 |
प्रकाशन तिथि | 2020-05-12 |
रेटिंग | 3.57/5 कुल 14 रेटिंग्स |
डेवलपर | Dan Chen |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/dannvix/CapTube |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "captube", "description": "Dual subtitles with AI-enabled translations", "version": "1.2.3", "name": "CapTube (Dual Captions for YouTube)", "manifest_version": 2, "author": "Dan Chen", "permissions": [ "storage", "https:\/\/www.youtube.com\/*", "https:\/\/tmt.tencentcloudapi.com\/*", "https:\/\/api.deepl.com\/*" ], "background": { "scripts": [ "background.min.js" ] }, "browser_action": { "default_icon": "icon-gray.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "32": "icon32.png", "128": "icon128.png", "512": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content.min.js" ], "run_at": "document_end" } ], "externally_connectable": { "matches": [ "https:\/\/www.youtube.com\/*" ] }, "web_accessible_resources": [ "captube.min.js", "icon32.png" ], "options_ui": { "chrome_style": true, "page": "options.html" } } |