downloader-extension/js/popup.js

18 lines
622 B
JavaScript
Raw Permalink Normal View History

2026-02-21 22:31:48 -05:00
// const colors = ['red', 'green', 'blue', 'cyan', 'magenta'];
// let current_color = -1;
// function get_color() { return colors[current_color]; }
// function next_color() { current_color ++; current_color = current_color % colors.length };
import * as settings from '/js/settings.js';
import * as notifications from '/js/notifications.js';
import * as actions from '/js/actions.js';
document.addEventListener("DOMContentLoaded", () => {
settings.enable();
notifications.enable();
actions.enable()
// load_domain_from_storage_and_enable_interactions();
// arm_action_buttons();
// begin_status_update_loop();
});