about summary refs log tree commit diff stats
path: root/pages/popup/popup.js
blob: 0dddb49cd712ba7ccd954403695777586155b2f5 (plain) (blame)
1
2
3
4
5
6
7
document.querySelector('#options').addEventListener('click', function () {
  if (chrome.runtime.openOptionsPage) {
    chrome.runtime.openOptionsPage();
  } else {
    window.open(chrome.runtime.getURL('../options/options.html'));
  }
});