mirror of
https://github.com/027xiguapi/code-box.git
synced 2026-05-04 10:38:35 +00:00
10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
import type { PlasmoMessaging } from "@plasmohq/messaging"
|
|
|
|
const handler: PlasmoMessaging.MessageHandler = async (req, res) => {
|
|
const { url } = req.body
|
|
|
|
chrome.tabs.create({ url: `/tabs/${url}` })
|
|
}
|
|
|
|
export default handler
|