aboutsummaryrefslogtreecommitdiff
path: root/build/background.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/background.js')
-rw-r--r--build/background.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/background.js b/build/background.js
new file mode 100644
index 0000000..76043c6
--- /dev/null
+++ b/build/background.js
@@ -0,0 +1,3 @@
+chrome.browserAction.onClicked.addListener(function() {
+ chrome.tabs.create({url: 'index.html'});
+});