DownloadWith/installed.js
2023-01-09 18:43:25 -06:00

9 lines
177 B
JavaScript

/* globals chrome, get_strings */
get_strings();
document.querySelector('button').onclick = function() {
chrome.runtime.openOptionsPage(function() {
window.close();
});
};