Files
slop-farmer-extension/src/common.ts
2025-11-16 23:25:27 +00:00

7 lines
230 B
TypeScript

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