basics of new popup are good to go

This commit is contained in:
Jack Case
2025-11-16 23:25:27 +00:00
parent 32b0994076
commit b55c47d5f1
3 changed files with 21 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
export const API_URL: string = "https://api.slopfarmer.jack-case.pro"
export async function send_message_to_background(message: any): Promise<any> {
const response = await browser.runtime.sendMessage(message)
const response = browser.runtime.sendMessage(message)
return response
}