-
Notifications
You must be signed in to change notification settings - Fork 3
/
popup.html
34 lines (34 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title data-i18n="popupTitle">CENO Sources</title>
<link rel="stylesheet" href="popup.css">
<script type="module" src="localizer/Localizer.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div data-i18n="popupTitle" id="header">CENO Sources</div>
<p data-i18n="popupHead">Number of page elements per source:</p>
<table>
<tr>
<td data-i18n="popupSrcOrigin">Direct from website</td><td class="value" id="origin"></td>
</tr><tr>
<td data-i18n="popupSrcProxy">Via the CENO network (private)</td><td class="value" id="proxy"></td>
</tr><tr>
<td data-i18n="popupSrcInjector">Via the CENO network (public)</td><td class="value" id="injector"></td>
</tr><tr>
<td data-i18n="popupSrcDcache">Shared by other CENO users</td><td class="value" id="dist-cache"></td>
</tr><tr>
<td data-i18n="popupSrcLcache">Shared by you</td><td class="value" id="local-cache"></td>
</tr>
</table>
<p data-i18n="popupFoot" data-opt-i18n-keep-children
id="see-manual">See the
<a data-i18n="popupFootMan" data-i18n-href="popupFootManLN" data-i18n-title="popupFootManTI"
href="https://censorship.no/user-manual/en/browser/settings.html#choosing-access-mechanisms"
title="Censorship.no! User Manual – CENO settings" target="_blank">manual</a>
for more information on content sources.
</p>
</body>
</html>