My content script work only when the webpage is reload, on the youtube webpage when clicking on 'a' element of a video the content scripts don't load
This is the content script property saved in manifest:
"content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": ["services/youtube.js"],
      "run_at": "document_end"
    }
  ],
 
    