Chromium Code Reviews| Index: chrome/browser/resources/extensions/extension_info.html |
| diff --git a/chrome/browser/resources/extensions/extension_info.html b/chrome/browser/resources/extensions/extension_info.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..271149565ab86ac3d7e45e9dfc2c9e07bcf6985e |
| --- /dev/null |
| +++ b/chrome/browser/resources/extensions/extension_info.html |
| @@ -0,0 +1,30 @@ |
| +<!DOCTYPE html> |
| +<html i18n-values="dir:textdirection;"> |
| +<head> |
| +<meta charset="utf-8"> |
| +<link rel="stylesheet" href="extension_info.css"> |
|
Evan Stade
2012/06/21 18:56:22
chrome_shared.css
Yoyo Zhou
2012/06/21 21:38:05
Added. It seems silly to do this and then get ugly
Evan Stade
2012/06/21 21:46:06
yea, but chrome_shared has more in it than just th
Yoyo Zhou
2012/06/22 19:20:53
I talked to Glen about this, who advised me that L
|
| + |
| +<script src="chrome://resources/js/cr.js"></script> |
| +<script src="chrome://resources/js/load_time_data.js"></script> |
| +<script src="chrome://resources/js/util.js"></script> |
| + |
| +<script src="chrome://extension-info/extension_info.js"></script> |
| +</head> |
| + |
| +<body> |
|
Evan Stade
2012/06/21 18:56:22
<body i18n-values=".style.fontFamily:fontfamily;.s
Yoyo Zhou
2012/06/21 21:38:05
Huh, aa asked me to remove them since they were ap
Evan Stade
2012/06/21 21:46:06
they do something, but you have to call ChromeURLD
|
| + |
| +<div id="extension-item"> |
| + <div id="extension-details"> |
| + <div id="extension-title-running"></div> |
| + <div> |
| + <span id="extension-last-updated" i18n-content="lastUpdated"></span> |
| + <span id="extension-update-time" i18n-content="installTime"></span> |
| + </div> |
| + <p id="extension-description" i18n-content="description"></p> |
| + </div> |
| +</div> |
| + |
| +<script src="chrome://extension-info/strings.js"></script> |
| +<script src="chrome://resources/js/i18n_template2.js"></script> |
| +</body> |
| +</html> |