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')); } });