I'm trying to get the Elements of a specific URL with a chrome extension and I try to get the elements with the fetch function but for some reason when I print the attributes of the response I get an empty string
fetch("https://liquipedia.net/rocketleague/List_of_player_camera_settings", {mode: 'no-cors', method: "GET",
})
.then((response) => console.log(response.statusText + " hlelo"))
.then((data) => {console.log(data)})
the output