Export YouTube Clips
A Chrome extension that allows you to easily extract YouTube clips and grab their urls.
What is Export YouTube Clips?
Export YouTube Clips is a Chrome extension developed by kendreaditya, and its main feature is "A Chrome extension that allows you to easily extract YouTube clips and grab their urls.".
Extension Screenshots
Download Export YouTube Clips Extension CRX File
Download Export YouTube Clips extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The YouTube Clips Markdown Generator is a handy browser extension that simplifies the process of creating markdown files from YouTube video clips. With this extension, you can easily extract relevant information from YouTube videos and generate organized markdown files that include video details, clip titles, URLs, and transcripts. It saves you time and effort by automating the tedious process of manually extracting and formatting information. Whether you want to create summaries, highlight key points, or share clips with others, this extension streamlines the task and helps you create professional-looking markdown files with ease.
Extension Basic Information
Name | Export YouTube Clips |
ID | bibadblheefeigmlmjiamjkajokjdnka |
Official URL | https://chromewebstore.google.com/detail/export-youtube-clips/bibadblheefeigmlmjiamjkajokjdnka |
Description | A Chrome extension that allows you to easily extract YouTube clips and grab their urls. |
File Size | 25.53 KB |
Installation Count | 30 |
Current Version | 1.0 |
Last Updated | 2023-05-14 |
Publish Date | 2023-05-14 |
Rating | 5.00/5 Total 1 Ratings |
Developer | kendreaditya |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/kendreaditya/youtube-clips/tree/main |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Export YouTube Clips", "version": "1.0", "description": "A Chrome extension that allows you to easily extract YouTube clips and grab their urls.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/feed\/clips" ], "js": [ "clipCheckboxes.js", "export.js" ], "run_at": "document_end" } ] } |