forked from adblockplus/adblockpluschrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
88 lines (79 loc) · 2.82 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<!--
- This file is part of Hola ad remover <https://adblockplus.org/>,
- Copyright (C) 2006-2016 Eyeo GmbH
-
- Hola ad remover is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License version 3 as
- published by the Free Software Foundation.
-
- Hola ad remover is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with Hola ad remover. If not, see <http://www.gnu.org/licenses/>.
-->
<html>
<head>
<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=Montserrat:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="skin/popup.css">
<script src="ext/popup.js"></script>
<script src="i18n.js"></script>
<script src="popup.js"></script>
<script src="notification.js"></script>
<script src="stats.js"></script>
</head>
<!-- Set tabindex to work around Chromium issue 304532 -->
<!-- Set overflow to hidden in order to prevent Safari showing scrollbars while loading -->
<body tabindex="1" style="overflow: hidden;">
<header>
<img id="logo" src="skin/logo.svg">
</header>
<div id="wrapper">
<div id="notification" hidden>
<div id="notification-content">
<h1>
<span id="notification-title"></span>
<span id="notification-close"></span>
</h1>
<p id="notification-message"></p>
</div>
<ul id="notification-close-content">
<li id="notification-hide"
class="i18n_overlay_notification_closing_button_hide"></li>
<li id="notification-optout"
class="i18n_overlay_notification_closing_button_optout"></li>
</ul>
</div>
<div id="clickhide-instructions" class="i18n_clickhide_instructions"></div>
<div id="hostname"></div>
<div id="enabled">
<div class="separator"></div>
<div class="switch-container">
<span>Block ads on this site</span>
<div class="icon"></div>
</div>
<div class="separator"></div>
</div>
<div id="clickhide-cancel" class="menu-item">
<div class="icon"></div>
<span class="i18n_cancel"></span>
</div>
<div id="stats-container">
<h3>Number of items blocked:</h3>
<div id="stats">
<div id="stats-page"></div>
<div id="stats-total"></div>
</div>
</div>
</div>
<div class="show-iconnumber-container">
<div id="show-iconnumber" class="checkbox" role="checkbox" aria-checked></div>
<label for="show-iconnumber" class="i18n_stats_show_iconnumber"></label>
</div>
</body>
</html>