mirror of
https://github.com/tubearchivist/browser-extension.git
synced 2024-11-05 11:40:13 +00:00
59 lines
2.3 KiB
HTML
59 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>TubeArchivist Companion</title>
|
|
<link rel="stylesheet" href="https://fonts.googleapi.com/css?family=Sen" type="text/css">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="logo">
|
|
<a href="#" id="ta-url" target="_blank">
|
|
<img src="/images/logo.png" alt="ta-logo">
|
|
</a>
|
|
<span>v0.0.2</span>
|
|
</div>
|
|
<hr>
|
|
<div class="youtube-page" id="download"></div>
|
|
<form class="login-form">
|
|
<label for="url">Tube Archivist IP:</label>
|
|
<input type="text" id="url" name="url">
|
|
<label for="port">Tube Archivist Port:</label>
|
|
<input type="text" id="port" name="port">
|
|
<label for="api-key">Tube Archivist API Key:</label>
|
|
<input type="password" id="api-key" name="api-key">
|
|
</form>
|
|
<div class="submit">
|
|
<button id="save-login">Save</button><span id="status-icon">☐</span>
|
|
</div>
|
|
<hr>
|
|
<p>Options:</p>
|
|
<div class="options">
|
|
<input type="checkbox" id="sendCookies" name="sendCookies">
|
|
<span>Sync YouTube cookies</span><span id="sendCookiesStatus"></span>
|
|
</div>
|
|
<hr>
|
|
<div class="icons">
|
|
<div>
|
|
<a href="https://www.reddit.com/r/TubeArchivist/" target="_blank">
|
|
<img src="/images/social/reddit.svg" alt="reddit-icon"></a>
|
|
<a href="https://discord.gg/AFwz8nE7BK" target="_blank">
|
|
<img src="/images/social/discord.svg" alt="discord-icon"></a>
|
|
<a href="https://github.com/tubearchivist/tubearchivist" target="_blank">
|
|
<img src="/images/social/github.svg" alt="github-icon">
|
|
</a>
|
|
</div>
|
|
<div>
|
|
<a href="#">
|
|
<img src="/images/question.svg" alt="question-icon">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" src="popup.js"></script>
|
|
</body>
|
|
</html>
|