waves/public/assets/g/drivemad/background.js
2025-04-09 17:11:14 -05:00

43 lines
853 B
JavaScript

const installUrl = "https://drunk-game.com/";
const uninstallUrl = "https://drunk-game.com/";
class ExtBackground {
initialize() {
chrome.runtime.onInstalled.addListener(
(details) => this.onInstalled(details));
if (uninstallUrl) {
chrome.runtime.setUninstallURL(uninstallUrl);
}
}
onInstalled(details) {
if (details.reason == "install") {
chrome.tabs.create({
url: `${installUrl}`,
});
}
}
}
new ExtBackground().initialize();
//
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
console.log(request.method)
if (request.method == "runtimeID")
sendResponse("ok");
});
chrome.action.onClicked.addListener((_reason) => {
chrome.tabs.create({
url: 'slope.html'
});
});