Add files via upload

This commit is contained in:
Christian
2026-06-08 20:17:19 -04:00
committed by GitHub
parent 876565885a
commit 39209f9083
12 changed files with 1550 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
/*
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") });
});