This is the js:
```js
fetch("https://somewebsite/somethingelse")
.then(r => r.text()).then(result => {
console.log(result)
})
```
This is a part of the manifest:
```json
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"somescript.js"
]
}
],
"host_permissions": [
"https://somewebsite/*"
]```
edit: its easier to see here https://hastebin.com/share/oqijijideb.css
– MG95Apr 04 '23 at 15:11
Can you put the relevant code and the manifest in the question please?
– phuziApr 04 '23 at 15:12