I've checked all the other threads I could find on this topic, but I haven't seen an issue like mine. I have a chrome extension manifest.json (version 3) where I declare that I want a js file and a css file injected based on a host match pattern:
"content_scripts": [
{
"matches": ["https://docs.google.com/presentation/d/*"],
"js": ["/Assets/JS/PageScript.js"],
"css": ["/Assets/CSS/PageCSS.css"]
}
]
I know the host pattern is valid because the js file is injected and runs. However, the CSS file refuses to inject.
Did I miss something?