Index: options/help.js |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/options/help.js |
@@ -0,0 +1,12 @@ |
+var helpParent = document.getElementById('help'); |
+ |
+var title = document.createElement('h2'); |
+title.appendChild(document.createTextNode(translate.get('help'))); |
+helpParent.appendChild(title); |
+ |
+var link = document.createElement('a'); |
+link.href = 'help.html'; |
+link.appendChild(document.createTextNode(translate.get('help_text'))); |
+var text = document.createElement('p'); |
+text.appendChild(link); |
+helpParent.appendChild(text); |