Files
2026-06-08 20:17:33 -04:00

14 lines
338 B
JavaScript

/*
Portage by pvrz
https://github.com/pvrzz/Portage/
File Name: background.js
*/
const api = typeof browser !== "undefined" ? browser : chrome;
api.runtime.onInstalled.addListener(() => console.log("[Portage] installed."));
api.action.onClicked.addListener(() => {
api.tabs.create({ url: api.runtime.getURL("dashboard.html") });
});