Content script not executing

Hello everyone,
I was going though the docs and the getting started section. I'm trying to load a content-script as on this page https://docs.plasmo.com/framework/content-scripts and https://github.com/PlasmoHQ/examples/blob/main/with-content-script/content.ts However, when I visit https://www.plasmo.com the script does appear to load/execute for some reason. I'm on firefox, and I've attached my folder structure, the content script and the console from dev tools.

import type { PlasmoCSConfig } from "plasmo"

export const config: PlasmoCSConfig = {
  matches: ["https://www.plasmo.com/*"]
}

window.addEventListener("load", () => {
  console.log(
    "You may find that having is not so pleasing a thing as wanting. This is not logical, but it is often true."
  )

  document.body.style.background = "pink"
})
image.png
image.png
Plasmo Docs
How to use Plasmo content scripts to inject custom behavior into web pages
Content Scripts – Plasmo
GitHub
🔰 Example projects that demonstrate how to use the Plasmo Framework and integrate with popular tools - PlasmoHQ/examples
examples/with-content-script/content.ts at main · PlasmoHQ/examples
Plasmo
Plasmo is a browser extension development platform that helps you build, publish, and manage your browser extensions.
Supercharge your browser extension development
Preview image
Preview image
Was this page helpful?