move files to locations describing their function

This commit is contained in:
buzz-lightsnack-2007 2024-03-28 08:51:04 +08:00
parent 8a590a9bad
commit 89b22bccba
6 changed files with 148 additions and 261 deletions

View file

@ -0,0 +1,22 @@
/* Popup.js
Build the interface for popup
*/
// Import modules.
import windowman from "../windowman.js";
let secretariat = await import(chrome.runtime.getURL("scripts/secretariat.js"));
function start() {
windowman.prepare();
}
/* Populate the strings on the page. */
function say(element) {
// document.title
}
function main() {
let tab = start();
say(tab);
}
main();