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

Unified Diff: go-back-with-backspace/pages/installed.js

Issue 2325963003: Add options and a browser-action popup. (Closed) Base URL: https://chromium.googlesource.com/chromium/extensions-by-google.git@master
Patch Set: Comments and copyrights Created 4 years, 3 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: go-back-with-backspace/pages/installed.js
diff --git a/go-back-with-backspace/pages/installed.js b/go-back-with-backspace/pages/installed.js
new file mode 100644
index 0000000000000000000000000000000000000000..39b29f2ee9d485b3552011aae45bcb26ebb40743
--- /dev/null
+++ b/go-back-with-backspace/pages/installed.js
@@ -0,0 +1,25 @@
+// Copyright 2016 Google Inc. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Initialize the page.
+function init() {
+ // Load internationalized strings.
+ var all = document.getElementsByTagName('*');
ojan 2016/09/15 19:07:15 document.querySelectorAll('[i18n]') should be fast
+ for (var i = 0; i < all.length; ++i) {
+ var i18n = all[i].getAttribute('i18n');
+ if (i18n)
+ all[i].textContent = chrome.i18n.getMessage(i18n);
+ }
+
+ document.getElementById('report_page').onclick = function() {
+ reportPage();
+ };
+
+ document.getElementById('open_options').onclick = function() {
+ chrome.runtime.openOptionsPage();
+ };
+
+}
+
+window.addEventListener('load', init, false);

Powered by Google App Engine
This is Rietveld 408576698