-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
64 lines (59 loc) · 2.12 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dark Patterns</title>
<link rel="stylesheet" href="popup.css">
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap" rel="stylesheet">
</head>
<body>
<div class="main">
<div class="head">
<img id="head-logo" src="images/logo-removebg.png" alt="logo">
<h1 id="head-title">Dark Pattern Detector</h1>
</div>
<div class="content">
<div class="ads boxes">
<h2>Ads </h2>
<div class="value" id="ads-value">
</div>
</div>
<div class="ads boxes">
<h2> AutoRenewal Free Trial </h2>
<div class="value" id="freetrial-value">
</div>
</div>
</div>
<h1 id="more">Scan for More Dark Patterns </h1>
<hr>
<div class="buttons">
<a href="/price.html">
<button id="not_per"> Notification and Permissions </button>
</a>
<a href="/price.html">
<button id="ch_redi"> Check Redirection</button></a>
<a href="/price.html">
<button id="ssl"> SSL and Domain Check </button>
</a>
<a href="/price.html">
<button id="ui_decep">Scan for UI deceptions</button>
</a>
<a href="/price.html">
<button id="price-trend">Check Price Trend </button>
</a>
<div id="loadingspinner"></div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>