YT Clipper

This extension will help create YouTube clips by sending clip start, stop, and titles to server.

Co to jest YT Clipper?

YT Clipper to rozszerzenie Chrome opracowane przez roblee357, a jego główną funkcją jest „This extension will help create YouTube clips by sending clip start, stop, and titles to server.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia YT Clipper

Pobierz pliki rozszerzeń YT Clipper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Can be useful in creating a training dataset.                    

Podstawowe informacje o rozszerzeniu

Nazwa YT Clipper YT Clipper
ID dbphcgefoicnofkngjonipaoonggnphj
Oficjalny URL https://chromewebstore.google.com/detail/yt-clipper/dbphcgefoicnofkngjonipaoonggnphj
Opis This extension will help create YouTube clips by sending clip start, stop, and titles to server.
Rozmiar pliku 773 KB
Liczba instalacji 42
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-06-10
Data Publikacji 2021-06-09
Deweloper roblee357
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YT Clipper",
    "description": "This extension will help create YouTube clips by sending clip start, stop, and titles to server.",
    "version": "1.0",
    "browser_action": {
        "default_title": "YT Clipper",
        "default_icon": "images\/icon128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        ""
    ]
}