Export YouTube Clips

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

Cos'è Export YouTube Clips?

Export YouTube Clips è un'estensione di Chrome sviluppata da kendreaditya, e la sua funzione principale è "A Chrome extension that allows you to easily extract YouTube clips and grab their urls.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Export YouTube Clips

Scarica i file di estensione Export YouTube Clips in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Export YouTube Clips Export YouTube Clips
ID bibadblheefeigmlmjiamjkajokjdnka
URL Ufficiale https://chromewebstore.google.com/detail/export-youtube-clips/bibadblheefeigmlmjiamjkajokjdnka
Descrizione A Chrome extension that allows you to easily extract YouTube clips and grab their urls.
Dimensione del File 25.53 KB
Conteggio Installazioni 30
Versione Corrente 1.0
Ultimo Aggiornamento 2023-05-14
Data di Pubblicazione 2023-05-14
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore kendreaditya
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kendreaditya/youtube-clips/tree/main
Lingue Supportate 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"
        }
    ]
}