forked from abcotter/WhoFundsYourFeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
28 lines (26 loc) · 1 KB
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<h1>Who Funds Your Feed</h1>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div id="email">
<p>Please enter your e-mail to enable sponsorship detection:</p>
<div class="flex-container">
<div class="flex-child textBox">
<input type="text" id="userEmail" placeholder=" [email protected] " name="inputText" value="" />
</div>
<div class="flex-child submitButton">
<input type="button" id="submit" value="Submit" />
</div>
</div>
</div>
<h2>Click to see your personalized insights!</h2>
<button class="button" id="index_link">View Insights</button>
<p class="gap"></p>
<h2>About WFYF</h2>
<p>This chrome extension will identify sponsored content on YouTube in order to provide awareness around the largest funders of your content consumption and their respective biases</p>
<script src="popup.js"></script>
</body>
</html>