Export YouTube Clips
A Chrome extension that allows you to easily extract YouTube clips and grab their urls.
什么是Export YouTube Clips?
Export YouTube Clips是由kendreaditya开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension that allows you to easily extract YouTube clips and grab their urls.”。
扩展截图
下载Export YouTube Clips扩展crx文件
下载Export YouTube Clips扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Export YouTube Clips |
ID | bibadblheefeigmlmjiamjkajokjdnka |
官方URL | https://chromewebstore.google.com/detail/export-youtube-clips/bibadblheefeigmlmjiamjkajokjdnka |
简介 | A Chrome extension that allows you to easily extract YouTube clips and grab their urls. |
文件大小 | 25.53 KB |
安装次数 | 30 |
当前版本 | 1.0 |
更新时间 | 2023-05-14 |
上架时间 | 2023-05-14 |
评分 | 5.00/5 共1次评分 |
开发者 | kendreaditya |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/kendreaditya/youtube-clips/tree/main |
支持的语言 | 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" } ] } |