Index: about/extension.js |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/about/extension.js |
@@ -0,0 +1,16 @@ |
+var extensionParent = document.getElementById('extension'); |
+ |
+var googlePlus = document.createElement('a'); |
+googlePlus.setAttribute('href', 'https://plus.google.com/u/0/100030264608059760955/'); |
+var googlePlusLogo = document.createElement('img'); |
+googlePlusLogo.setAttribute('src', '/images/googlePlus.png'); |
+googlePlus.appendChild(googlePlusLogo); |
+ |
+var title = document.createElement('h2'); |
+title.appendChild(document.createTextNode(translate.get('about_ext') + ' ')); |
+title.appendChild(googlePlus); |
+extensionParent.appendChild(title); |
+ |
+var text = document.createElement('p'); |
+text.appendChild(document.createTextNode(translate.get('about_ext_text'))); |
+extensionParent.appendChild(text); |