YT Transcript Downloader
Download transcript of youtube video
YT Transcript Downloader क्या है?
YT Transcript Downloader Mizan Rifat द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download transcript of youtube video"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YT Transcript Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The YT Transcript Downloader is a handy Chrome extension that enhances your YouTube experience by adding a convenient download button to video transcripts. Say goodbye to the hassle of copying and pasting transcript text – with this extension, you can effortlessly download the transcript in a simple text (txt) format with just a click. Key Features: Download Transcripts: Seamlessly download YouTube video transcripts in text (txt) format for easy reference and offline reading. Enhanced Convenience: The extension integrates a download button directly into the YouTube interface, simplifying the transcript retrieval process. Time-Saving: No need to manually copy and paste transcript content – save time and effort by downloading transcripts with a single click. Unlock a new level of convenience when using YouTube by adding the YouTube Transcript Downloader to your Chrome browser today!
एक्सटेंशन की मूल जानकारी
नाम | YT Transcript Downloader |
ID | liakknlpjigmkploknohgomhgaenjpom |
आधिकारिक URL | https://chromewebstore.google.com/detail/yt-transcript-downloader/liakknlpjigmkploknohgomhgaenjpom |
विवरण | Download transcript of youtube video |
फ़ाइल का आकार | 11.46 KB |
स्थापना संख्या | 264 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2023-11-30 |
प्रकाशन तिथि | 2023-09-18 |
रेटिंग | 4.00/5 कुल 3 रेटिंग्स |
डेवलपर | Mizan Rifat |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YT Transcript Downloader", "description": "Download transcript of youtube video", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "content_script.js" ], "css": [ "content_script.css" ] } ], "permissions": [ "tabs" ], "action": { "default_icon": { "16": "\/images\/logo-16x16.png", "32": "\/images\/logo-32x32.png", "48": "\/images\/logo-48x48.png", "128": "\/images\/logo-128x128.png" } }, "icons": { "16": "\/images\/logo-16x16.png", "32": "\/images\/logo-32x32.png", "48": "\/images\/logo-48x48.png", "128": "\/images\/logo-128x128.png" } } |