cobalt/sidepanel.html
google-labs-jules[bot] 42f2bbf6a6 feat: Create Chrome extension for Cobalt video downloader
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.
2025-06-11 20:11:49 +00:00

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>