From 4256e5186ace001ea6f1b10c4fa81e05c30f0b90 Mon Sep 17 00:00:00 2001 From: u-Sir <93647031+u-Sir@users.noreply.github.com> Date: Mon, 23 Dec 2024 22:52:36 +0800 Subject: [PATCH] Update custom_page.js --- firefox/custom_page.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/firefox/custom_page.js b/firefox/custom_page.js index 47fc765..1dd03c9 100644 --- a/firefox/custom_page.js +++ b/firefox/custom_page.js @@ -95,7 +95,6 @@ function createIframe(url) { return; // URL not found in storage, exit early } - console.log("URL found at index:", index); // Create the index selector dropdown const selector = document.createElement("select"); @@ -138,7 +137,6 @@ function createIframe(url) { // Add an event listener for when the user selects an index selector.addEventListener("change", () => { const selectedIndex = parseInt(selector.value); // Get selected index - console.log("Selected index:", selectedIndex); // Swap the URL at the current index with the selected index const temp = urls[index];