15 lines
462 B
JavaScript
15 lines
462 B
JavaScript
document.getElementById("toggleBot").addEventListener("click", () => {
|
|
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
|
|
chrome.scripting.executeScript({
|
|
target: { tabId: tabs[0].id },
|
|
function: toggleBot
|
|
});
|
|
});
|
|
});
|
|
|
|
function toggleBot() {
|
|
let bot = document.getElementById("floating-bot");
|
|
if (bot) {
|
|
bot.style.display = bot.style.display === "none" ? "block" : "none";
|
|
}
|
|
} |