Export YouTube Clips

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

Was ist Export YouTube Clips?

Export YouTube Clips ist eine Chrome-Erweiterung, die von kendreaditya entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension that allows you to easily extract YouTube clips and grab their urls.".

Erweiterungsscreenshots

screenshot

Export YouTube Clips-Erweiterungs-CRX-Datei herunterladen

Laden Sie Export YouTube Clips-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Export YouTube Clips Export YouTube Clips
ID bibadblheefeigmlmjiamjkajokjdnka
Offizielle URL https://chromewebstore.google.com/detail/export-youtube-clips/bibadblheefeigmlmjiamjkajokjdnka
Beschreibung A Chrome extension that allows you to easily extract YouTube clips and grab their urls.
Dateigröße 25.53 KB
Installationsanzahl 30
Aktuelle Version 1.0
Letztes Update 2023-05-14
Veröffentlichungsdatum 2023-05-14
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler kendreaditya
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kendreaditya/youtube-clips/tree/main
Unterstützte Sprachen 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"
        }
    ]
}