Video Downloader Interface

A simple interface for downloading videos from the web.

Stan na 08-04-2024. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

/* ==UserStyle==
@name Video Downloader Interface
@namespace urn:uuid:12345678-1234-5678-1234-567812345678
@version 1.0
@description A simple interface for downloading videos from the web.
@license MIT; https://opensource.org/licenses/MIT
@homepageURL http://example.com/video-downloader-home
@supportURL http://example.com/video-downloader-support
@var text videoURL "Video URL" "https://example.com"
==/UserStyle== */
@-moz-document domain("example.com") {
    body {
        background-color: #f0f0f0;
    }

    #video-downloader-form {
        background-color: #ffffff;
        border: 1px solid #ddd;
        padding: 20px;
        margin: 50px auto;
        width: 300px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    #video-downloader-form label,
    #video-downloader-form input,
    #video-downloader-form button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    #video-downloader-form button {
        background-color: #007bff;
        color: #ffffff;
        border: none;
        padding: 10px;
        cursor: pointer;
    }

    #video-downloader-form button:hover {
        background-color: #0056b3;
    }
}