Estoy escribiendo un script de tampermonkey en JS que obtiene datos de las hojas de Google.
const url = 'https://docs.google.com/spreadsheets/d/...'; await fetch(url) .then(res => res.text()) .then(rep =>{ data = JSON.parse(rep.substr(47).slice(0,-2)); console.log(data);Estoy teniendo el siguiente error
Refused to connect to 'https://docs.google.com/spreadsheets/d/...' because it violates the following Content Security Policy directive: "connect-src 'self'¿Cómo puedo solucionar esto?