mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-12-15 00:22:08 +01:00
6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
chrome.runtime.onMessage.addListener(async (message) => {
|
|
if (message.action == 'ff2mpv') {
|
|
await chrome.runtime.sendNativeMessage('ff2mpv', { url: message.url });
|
|
}
|
|
});
|