- Implement content script to identify member-only videos on YouTube - Create popup interface for managing a channel whitelist - Add necessary icons and manifest configuration
19 lines
362 B
HTML
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>
|