1
0
ANTI-BS/popup.html
lordlogo2002 4bbbcd8040 Add content script and popup for channel whitelist management
- Implement content script to identify member-only videos on YouTube
- Create popup interface for managing a channel whitelist
- Add necessary icons and manifest configuration
2026-01-19 18:55:43 +01:00

19 lines
362 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>
<input id="channelInput" placeholder="Channel name" />
<button id="addBtn">Add</button>
<ul id="channelList"></ul>
<script src="popup.js"></script>
</body>
</html>