msr-mod/public/background.js
Astrian Zheng fff7ceeb2e
feat: 新增主页、侧边栏和播放组件,并配置路由
添加了主页、侧边栏和播放组件的基本结构,并配置了 Vue Router 以支持路由功能。同时,更新了全局样式和依赖项,确保界面风格一致。
2025-05-24 09:39:33 +10:00

21 lines
513 B
JavaScript

chrome.webRequest.onBeforeRequest.addListener(
(details) => {
console.log(
'onBeforeRequest MAIN_FRAME:',
details.url,
details.type,
details.frameId,
details.tabId,
)
if (
details.url === 'https://monster-siren.hypergryph.com/manifest.json' &&
details.type === 'other' &&
details.frameId === 0
) {
chrome.tabs.create({ url: chrome.runtime.getURL('index.html') })
chrome.tabs.remove(details.tabId)
}
},
{ urls: ['https://monster-siren.hypergryph.com/manifest.json'] },
)