Export YouTube Clips

A Chrome extension that allows you to easily extract YouTube clips and grab their urls.

Export YouTube Clips là gì?

Export YouTube Clips là một tiện ích mở rộng Chrome được phát triển bởi kendreaditya, và tính năng chính của nó là "A Chrome extension that allows you to easily extract YouTube clips and grab their urls.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Export YouTube Clips

Tải xuống các tệp mở rộng Export YouTube Clips dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Export YouTube Clips Export YouTube Clips
ID bibadblheefeigmlmjiamjkajokjdnka
URL Chính Thức https://chromewebstore.google.com/detail/export-youtube-clips/bibadblheefeigmlmjiamjkajokjdnka
Mô tả A Chrome extension that allows you to easily extract YouTube clips and grab their urls.
Kích Thước Tệp 25.53 KB
Số Lần Cài Đặt 30
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-05-14
Ngày Phát Hành 2023-05-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển kendreaditya
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kendreaditya/youtube-clips/tree/main
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}