Skip to content

Instantly share code, notes, and snippets.

@jonesnxt
Created July 26, 2022 18:51
Show Gist options
  • Save jonesnxt/1f57c19604752bae0c9bf258f52d1606 to your computer and use it in GitHub Desktop.
Save jonesnxt/1f57c19604752bae0c9bf258f52d1606 to your computer and use it in GitHub Desktop.
Array.from(document.styleSheets)
.filter((sheet) => {
try {
sheet.cssRules;
return true;
} catch (err) {
console.log(
`Due to CORS issues, this script can't access "${sheet.href}"`
);
return false;
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment