import type { PlasmoCSConfig, PlasmoGetInlineAnchor } from "plasmo" export const config: PlasmoCSConfig = { matches: [""] } export const getInlineAnchor: PlasmoGetInlineAnchor = () => // document.querySelector(`[href="/#pricing"]`) document.querySelector(`.text-secondly`); // Use this to optimize unmount lookups // export const getShadowHostId = () => "plasmo-inline-example-unique-id" const PlasmoInline = () => { return (
CSUI INLINE
) } export default PlasmoInline