blob: 39d53405681e5c349acf0d4342f1ece9415b35f1 (
plain)
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-WebKit-CSP"
content="object-src 'none';
script-src
chrome-extension://mndnfokpggljbaajbnioimlmbfngpief
'self'">
<title>Credits</title>
<style>
body {
font-family:Helvetica,Arial,sans-serif;
background-color:white;
font-size:84%;
max-width:1020px;
}
.page-title {
font-size:164%;
font-weight:bold;
}
.product {
background-color:#c3d9ff;
overflow:auto;
padding:2px;
margin-top:16px;
border-radius:5px;
}
.product .title {
font-size:110%;
font-weight:bold;
float:left;
margin:3px;
}
.product .homepage {
text-align:right;
float:right;
margin:3px;
}
.product .homepage:after {
content:" - ";
}
.product .show {
text-align:right;
float:right;
margin:3px;
}
.licence {
clear:both;
background-color:#e8eef7;
padding:16px;
border-radius:3px;
display:none;
}
.licence h3 {
margin-top:0px;
}
</style>
</head>
<body>
<span class="page-title" style="float:left;">Credits</span>
<a id="print-link" href="#" style="float:right;">Print</a>
<div style="clear:both; overflow:auto;"><!-- Chromium <3s the following projects -->
{{entries}}
</div>
<script src="chrome://credits/credits.js"></script>
</body>
</html>
|