I just tried to create a simple extension for youtube that logs a message on the console on video pages and it does not work. I just do not get it, the same extension work in other pages...
content.js:
console.log("äquiii")
manifest.js:
{
"manifest_version":2,
"name": "Youtube Sentment Analysis",
"version": "0.1",
"content_scripts": [
{
"matches": ["*://www.youtube.com/*"],
"css": ["style.css"],
"js": ["content.js"],
"run_at": "document_start"
}
]
}
Anyone?
Thanks!