43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Member Filter</title>
|
|
<link rel="stylesheet" href="popup.css" />
|
|
</head>
|
|
<body>
|
|
<!-- Title + short description -->
|
|
<h3>Channel Whitelist</h3>
|
|
<p class="subtext">
|
|
Hide member-only videos by default. Whitelisted creators stay visible.
|
|
Add the channel name and its @handle or link.
|
|
</p>
|
|
|
|
<!-- Inputs -->
|
|
<div class="row">
|
|
<input id="channelInput" placeholder="Channel name" />
|
|
</div>
|
|
<div class="row">
|
|
<input id="channelLinkInput" placeholder="Channel link or @handle" />
|
|
<button id="addBtn">Add</button>
|
|
</div>
|
|
|
|
<!-- Settings -->
|
|
<div class="row settings">
|
|
<label class="toggle">
|
|
<input id="debugToggle" type="checkbox" />
|
|
<span>Debug logging</span>
|
|
</label>
|
|
<button id="resetBtn" class="ghost">Reset defaults</button>
|
|
</div>
|
|
<p class="subtext subtext-debug">
|
|
Debug logs will appear in the console only when enabled.
|
|
</p>
|
|
|
|
<!-- Whitelist list -->
|
|
<ul id="channelList"></ul>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|