aboutsummaryrefslogtreecommitdiff
path: root/background.js
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-01-23 23:07:25 -0500
committerDeterminant <ted.sybil@gmail.com>2019-01-23 23:07:25 -0500
commit9eec5b0d0ca748a73abe23511688bbba9b906c22 (patch)
tree48f610df290336edae8a620d945f8cc156e34a89 /background.js
parent4ef8618ffba5a66fea2020f367f5533efeaa5b0c (diff)
figure out how to do oauth2 and access Google Calendar data
Diffstat (limited to 'background.js')
-rw-r--r--background.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/background.js b/background.js
new file mode 100644
index 0000000..76043c6
--- /dev/null
+++ b/background.js
@@ -0,0 +1,3 @@
+chrome.browserAction.onClicked.addListener(function() {
+ chrome.tabs.create({url: 'index.html'});
+});