I'm trying to include content script into tabs which is loaded from the Web (eg. https://www.somesite.com/somescript.js ). This is not a library, rather a frequently (every week) changing script. As the change is so frequent I do not want the users to keep updating so often. I have looked at the content security policy and added my domain there, which has allowed me to include background scripts from the Web but this doesn't seem to work for content scripts.
PS. I tried using some JS loaders (since I needed multiple files and a callback), but they inject the script in the isolated world of the tab and not the content script.