move files

This commit is contained in:
buzz-lightsnack-2007 2024-04-15 15:24:40 +08:00
parent ec43576519
commit 6451dfd065
11 changed files with 6 additions and 6 deletions

22
scripts/pages/popup.js Normal file
View file

@ -0,0 +1,22 @@
/* Popup.js
Build the interface for popup
*/
// Import modules.
import windowman from "/scripts/GUI/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();