CinePlex/js/background.js
2025-07-02 14:16:25 +02:00

4 lines
132 B
JavaScript

chrome.action.onClicked.addListener(() => {
const url = chrome.runtime.getURL("plex.html");
chrome.tabs.create({ url });
});