Export YouTube Clips

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

Vad är Export YouTube Clips?

Export YouTube Clips är en Chrome-tillägg utvecklad av kendreaditya, och dess huvudfunktion är "A Chrome extension that allows you to easily extract YouTube clips and grab their urls.".

Tilläggsskärmbilder

screenshot

Ladda ner Export YouTube Clips-förlängningens CRX-fil

Ladda ner Export YouTube Clips-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Export YouTube Clips Export YouTube Clips
ID bibadblheefeigmlmjiamjkajokjdnka
Officiell webbadress https://chromewebstore.google.com/detail/export-youtube-clips/bibadblheefeigmlmjiamjkajokjdnka
Beskrivning A Chrome extension that allows you to easily extract YouTube clips and grab their urls.
Filstorlek 25.53 KB
Antal Installationer 30
Aktuell Version 1.0
Senast Uppdaterad 2023-05-14
Publiceringsdatum 2023-05-14
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare kendreaditya
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/kendreaditya/youtube-clips/tree/main
Stödda Språk 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"
        }
    ]
}