1
0
ANTI-BS/popup.html

39 lines
981 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Member Filter</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<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>
<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>
<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>
<ul id="channelList"></ul>
<script src="popup.js"></script>
</body>
</html>