Access the options page when clicking the extension icon

Change-Id: I4dc518e1a828c79dcb86149c8213d72fff47fde5
diff --git a/src/background.js b/src/background.js
index 3e73282..e97a24e 100644
--- a/src/background.js
+++ b/src/background.js
@@ -41,3 +41,7 @@
     cleanUpOptions();
   }
 });
+
+chrome.browserAction.onClicked.addListener(function() {
+  chrome.runtime.openOptionsPage();
+});