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

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: rename resources 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..dac40e92069a9e84d6effb29ea474138b1189646
--- /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">
+
+<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>
+
+<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"></span>
+ </div>
+ <p id="extension-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