You’ve probably heard this a thousand times, but here it is: I’ve tried to debug a simple extension with this manifest:
{
"manifest_version": 3,
"name": "CERES URL Generator",
"version": "1.0",
"description": "Generates CERES URLs from museum artifact pages",
"permissions": ["activeTab", "scripting"],
"content_scripts": [
{
"matches": ["*://ceres.mcu.es/*"],
"js": ["content.js"]
}
]
}
I load it in this page and it does not seem to trigger; the initial console.log does not show up. I’ve tried the “Inspect” page (which does not seem to be the thing), and the debugging page. There must be something wrong with the URL, but I simply can´t imagine what.