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.”。

擴展截圖

screenshot

下載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 Export YouTube Clips
ID bibadblheefeigmlmjiamjkajokjdnka
官方網址 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"
        }
    ]
}