Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(693)

Unified Diff: chrome/browser/resources/extensions/extension_info.html

Issue 10544195: Show an extension info bubble when a script badge is clicked. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleaner Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698