This repository was archived by the owner on Oct 24, 2019. It is now read-only.
forked from adblockplus/adblockplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
85 lines (85 loc) · 2.98 KB
/
popup.html
File metadata and controls
85 lines (85 loc) · 2.98 KB
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
<!DOCTYPE html>
<!--
- This file is part of Adblock Plus <https://adblockplus.org/>,
- Copyright (C) 2006-present 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>
<title>Adblock Plus</title>
<meta charset="utf-8">
<link rel="stylesheet" href="skin/fonts/font.css">
<link rel="stylesheet" type="text/css" href="skin/popup.css">
<script src="polyfill.js"></script>
<script src="ext/common.js"></script>
<script src="ext/content.js"></script>
<script src="i18n.js"></script>
<script src="popup.js"></script>
</head>
<body class="nohtml" tabindex="1">
<header>
<img src="skin/icons/blockera-logo.svg" alt="">
<button id="options" data-i18n="options_short"></button>
</header>
<div id="notification" aria-hidden="true"></div>
<main>
<div id="page-status">
<div>
<div class="details">
<h2 data-i18n="status_header"></h2>
<p id="blocking-domain" class="reset-font"></p>
</div>
<io-circle-toggle checked></io-circle-toggle>
</div>
</div>
<div id="page-info">
<div id="default-container">
<h2 data-i18n="stats_header"></h2>
<div id="stats-page" class="card"></div>
<div id="stats-total" class="card"></div>
<div class="options">
<button id="issue-reporter">
<span data-i18n="sendReport" class="report"></span>
</button>
<button id="block-element">
<span data-i18n="easy_create_filter" class="block"></span>
</button>
</div>
</div>
<div id="block-element-container">
<div id="block-element-info" class="card">
<strong data-i18n="easy_create_filter"></strong>
<span data-i18n="click_element_to_block_it"></span>
</div>
<div class="options">
<button id="block-element-cancel">
<span data-i18n="cancel" class="block"></span>
</button>
</div>
</div>
</div>
<div id="page-refresh">
<div class="card">
<span data-i18n="refresh_to_take_effect"></span>
<button data-i18n="options_refresh"></button>
</div>
</div>
</main>
<footer>
<span data-i18n="promote_abp_module"></span>
<button class="store apple"></button>
<button class="store android"></button>
</footer>
</body>
</html>