CinePlex/js/background.js

4 lines
132 B
JavaScript
Raw Permalink Normal View History

2025-07-02 14:16:25 +02:00
chrome.action.onClicked.addListener(() => {
const url = chrome.runtime.getURL("plex.html");
chrome.tabs.create({ url });
});