DownloadWith/installed.js

9 lines
177 B
JavaScript
Raw Permalink Normal View History

2023-01-09 19:43:25 -05:00
/* globals chrome, get_strings */
get_strings();
document.querySelector('button').onclick = function() {
chrome.runtime.openOptionsPage(function() {
window.close();
});
};