Skip to content

Instantly share code, notes, and snippets.

@tarciozemel
Created January 20, 2023 15:24
Show Gist options
  • Save tarciozemel/e34cd8ec7297cddd018e854f2c8cad86 to your computer and use it in GitHub Desktop.
Save tarciozemel/e34cd8ec7297cddd018e854f2c8cad86 to your computer and use it in GitHub Desktop.
Diagnostic Stylesheet: identify script[async][defer]
/* @see https://twitter.com/csswizardry/status/1616451810004242432 */
head,
script[async][defer],
script[async][defer]::before {
display: block !important;
}
script[async][defer]::before {
background-color: white !important;
border: 10px solid !important;
color: red !important;
content: attr(src) !important;
padding: 10px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment