blob: 75c0b878fcaee2516b4caadcf6b7a49b95e65b94 (
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
|
<!doctype html>
<html i18n-values="dir:textdirection;lang:language">
<head>
<meta charset="utf8">
<title i18n-content="title"></title>
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://extensions/manager.html">
<style>
html {
background: #e6e6e6;
}
html,
body {
font-family: Roboto;
height: 100%;
margin: 0;
}
</style>
</head>
<body>
<extensions-manager></extensions-manager>
<link rel="import" href="chrome://resources/html/load_time_data.html">
<link rel="import" href="chrome://extensions/strings.html">
<link rel="import" href="chrome://resources/html/i18n_template.html">
</body>
</html>
|