Dual Subtitles for TED Talks
This extension displays two subtitles at once - a translated subtitle alongside the original transcript.
Dual Subtitles for TED Talks क्या है?
Dual Subtitles for TED Talks h13a द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension displays two subtitles at once - a translated subtitle alongside the original transcript."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Dual Subtitles for TED Talks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Learn a language with 4000+ TED Talks to stir your curiosity. While using this extension, you'll see translated subtitles for a TED Talk along with the original transcript. It helps you follow the speaker and understand the context more clearly. Never want to be left behind by an audience laughing at a joke? Select a language and get started! ******************** ver 1.3.1: 🔧 Fixes an issue in setting the default language and font size. ver 1.3.0: ✨ Font size adjustment ✨ Improved language selection - only shows the languages available in the currently playing video ver 1.2.0: ✨ Introducing full screen mode! ver 1.1.0: 🔧 Subtitles are now properly synced when an ad appears prior to the talk video. ********************
एक्सटेंशन की मूल जानकारी
नाम | Dual Subtitles for TED Talks |
ID | ccednkoekghkpdkmphmgbjieheeaiajm |
आधिकारिक URL | https://chromewebstore.google.com/detail/dual-subtitles-for-ted-ta/ccednkoekghkpdkmphmgbjieheeaiajm |
विवरण | This extension displays two subtitles at once - a translated subtitle alongside the original transcript. |
फ़ाइल का आकार | 702 KB |
स्थापना संख्या | 368 |
वर्तमान संस्करण | 1.3.1 |
अंतिम अपडेट | 2024-01-07 |
प्रकाशन तिथि | 2022-07-20 |
रेटिंग | 4.00/5 कुल 2 रेटिंग्स |
डेवलपर | h13a |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://harukikinoshita.com/chrome-extensions-privacy-policy |
समर्थित भाषाएँ | en,es,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dual Subtitles for TED Talks", "description": "This extension displays two subtitles at once - a translated subtitle alongside the original transcript.", "version": "1.3.1", "manifest_version": 3, "default_locale": "en", "icons": { "16": "icon16x16.png", "32": "icon32x32.png", "48": "icon48x48.png", "128": "icon128x128.png" }, "content_scripts": [ { "js": [ "contents.js" ], "css": [ "interface.css" ], "matches": [ "https:\/\/www.ted.com\/talks\/*" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage", "webRequest" ], "host_permissions": [ "https:\/\/www.ted.com\/talks\/*", "https:\/\/pubads.g.doubleclick.net\/*" ] } |