Chrome Extension
background.ts
import { ChromeBackgroundIO, RPCChannel } from "kkrpc"import type { API } from "./api"
// Store RPC channels for each tabconst rpcChannels = new Map<number, RPCChannel<API, {}>>()
// Listen for tab connectionschrome.runtime.onConnect.addListener((port) => { if (port.sender?.tab?.id) { const tabId = port.sender.tab.id const io = new ChromeBackgroundIO(tabId) const rpc = new RPCChannel(io, { expose: backgroundAPI }) rpcChannels.set(tabId, rpc)
port.onDisconnect.addListener(() => { rpcChannels.delete(tabId) }) }})
content.ts
import { ChromeContentIO, RPCChannel } from "kkrpc"import type { API } from "./api"
const io = new ChromeContentIO()const rpc = new RPCChannel<API, API>(io, { expose: { updateUI: async (data) => { document.body.innerHTML = data.message return true } }})
// Get API from background scriptconst api = rpc.getAPI()const data = await api.getData()console.log(data) // { message: "Hello from background!" }