Skip to content

Instantly share code, notes, and snippets.

@l3dlp
Created March 19, 2026 09:07
Show Gist options
  • Select an option

  • Save l3dlp/2456c68ae4835141db94659440476538 to your computer and use it in GitHub Desktop.

Select an option

Save l3dlp/2456c68ae4835141db94659440476538 to your computer and use it in GitHub Desktop.
Retrieve the CSS stored in the browser's memory
(async () => {
let css = '';
for (const sheet of document.styleSheets) {
try {
for (const rule of sheet.cssRules) {
css += rule.cssText + '\n';
}
} catch (e) {
console.warn('Blocked:', sheet.href);
}
}
console.log(css);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment