UNPKG

create-mellowtel-extension

Version:

Create a new Mellowtel browser extension with one command

15 lines (13 loc) 469 B
import Mellowtel from "mellowtel"; export default defineContentScript({ matches: ["<all_urls>"], runAt: "document_start", allFrames: true, main: async () => { // The API key can be obtained from the Mellowtel dashboard // https://www.mellowtel.it/mellowtel-dashboard const MELLOWTEL_CONFIG_KEY = import.meta.env.VITE_MELLOWTEL_CONFIG_KEY; const mellowtel = new Mellowtel(MELLOWTEL_CONFIG_KEY); await mellowtel.initContentScript(); }, });