Youtube short to video converter

Convert a Youtube video to a short.

Was ist Youtube short to video converter?

Youtube short to video converter ist eine Chrome-Erweiterung, die von https://leonardochen.dev entwickelt wurde, und ihr Hauptmerkmal ist "Convert a Youtube video to a short.".

Erweiterungsscreenshots

Youtube short to video converter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube short to video converter-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

                        Elevate your experience with YouTube shorts by incorporating essential tools directly into your shorts content. Introducing added buttons that seamlessly toggle between YouTube's shorts and videos, giving you greater control over your viewing journey.                    

Grundlegende Informationen zur Erweiterung

Name Youtube short to video converter Youtube short to video converter
ID ahpfmcbhbecekponcmndgbalgncfelab
Offizielle URL https://chromewebstore.google.com/detail/youtube-short-to-video-co/ahpfmcbhbecekponcmndgbalgncfelab
Beschreibung Convert a Youtube video to a short.
Dateigröße 111 KB
Installationsanzahl 137
Aktuelle Version 2.0.1
Letztes Update 2023-08-28
Veröffentlichungsdatum 2023-08-07
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://leonardochen.dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube short to video converter",
    "version": "2.0.1",
    "description": "Convert a Youtube video to a short.",
    "author": "[email protected]",
    "action": {
        "default_icon": "icons\/convertIcon.png"
    },
    "icons": {
        "16": "icons\/convertIcon-16x16.png",
        "48": "icons\/convertIcon-48x48.png",
        "128": "icons\/convertIcon-128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/contentVid.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/iconWebCol.png",
                "icons\/iconVidWhite.png"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "permissions": [
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            }
        }
    }
}