forked from adblockplus/backup-adblockpluschrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
102 lines (91 loc) · 3.2 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<!--
- This file is part of Adblock Plus <http://adblockplus.org/>,
- Copyright (C) 2006-2014 Eyeo GmbH
-
- Adblock Plus 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.
-
- Adblock Plus 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 Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
-->
<html>
<head>
<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>
<div id="logo"></div>
</header>
<div id="wrapper">
<div id="notification">
<h1>
<span id="notification-title"></span>
<span id="close-notification"></span>
</h1>
<div id="notification-message"></div>
</div>
<div id="clickhide-instructions" class="i18n_clickhide_instructions"></div>
<ul id="menu">
<li id="enabled" class="menu-item" role="button">
<div class="icon"></div>
<span id="enabled-yes" class="i18n_enabled_for_site"></span>
<span id="enabled-no" class="i18n_disabled_for_site"></span>
</li>
<li id="clickhide" class="menu-item" role="button">
<div class="icon"></div>
<span class="i18n_easy_create_filter"></span>
</li>
<li id="clickhide-cancel" class="menu-item" role="button">
<div class="icon"></div>
<span class="i18n_cancel"></span>
</li>
<li id="stats-container">
<div class="menu-item collapse" data-option="show_statsinpopup" data-collapsable="stats-container" role="button">
<div class="icon"></div>
<span class="i18n_stats_title"></span>
<div class="collapse-icon-placeholder safari-inline-block"></div>
<div class="collapse-icon"></div>
</div>
<ul id="stats" class="collapsable">
<li>
<div>
<div id="stats-page"></div>
<div id="stats-total"></div>
</div>
<div id="share">
<span class="i18n_stats_share_title"></span>
<div id="share-box">
<div data-social="facebook"></div>
<div data-social="twitter"></div>
<div data-social="gplus"></div>
</div>
</div>
</li>
<li>
<div id="show-iconnumber" class="checkbox" role="checkbox" aria-checked></div>
<label for="show-iconnumber" class="i18n_stats_show_iconnumber"></label>
</li>
</ul>
</li>
</ul>
</div>
<footer id="options" role="button">
<div class="icon"></div>
<span class="i18n_options_short"></span>
</footer>
</body>
</html>