mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-28 09:28:29 +00:00
![google-labs-jules[bot]](/assets/img/avatar_default.png)
This commit introduces a Chrome extension that provides a side panel interface to facilitate video downloads using Cobalt. Key features: - A side panel UI with an input field for video URLs and a download button. - Redirects you to the Cobalt website (cobalt.tools) with the video URL for processing. - Basic URL validation and error handling for your input. - Includes necessary manifest.json, HTML, CSS, and JavaScript files. - Placeholder icons are included. The extension allows you to quickly send video URLs to Cobalt directly from your browser's side panel.
16 lines
469 B
HTML
16 lines
469 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Cobalt Side Panel</title>
|
|
<link rel="stylesheet" href="sidepanel.css">
|
|
</head>
|
|
<body>
|
|
<h1>Cobalt Video Downloader</h1>
|
|
<p>Enter the URL of the video you want to download:</p>
|
|
<input type="text" id="videoUrl" placeholder="e.g., https://www.youtube.com/watch?v=..." style="width: 90%; margin-bottom: 10px;">
|
|
<button id="downloadButton">Download with Cobalt</button>
|
|
|
|
<script src="sidepanel.js"></script>
|
|
</body>
|
|
</html>
|