Add files via upload

This commit is contained in:
Christian
2026-06-08 20:17:33 -04:00
committed by GitHub
parent 39209f9083
commit 12623f53f0
12 changed files with 1555 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") });
});