Skip to content

Instantly share code, notes, and snippets.

@malcolmocean
Created March 10, 2020 16:12
Show Gist options
  • Save malcolmocean/f8f98631cbf6dad1553cac4c1efb75fa to your computer and use it in GitHub Desktop.
Save malcolmocean/f8f98631cbf6dad1553cac4c1efb75fa to your computer and use it in GitHub Desktop.
Gell-Mann Amnesia Blocker - remember which sites you don't trust
@-moz-document domain("dailymail.co.uk"), domain("nytimes.com") {
/* Source for "How do I know this site BSes"
Daily Mail - widely known to be a tabloid
NYT: https://twitter.com/paulg/status/1236975851255857152
*/
body:before {
position: fixed;
top: 0;
left: 0;
right: 0;
background: linear-gradient(red, orange);
color: white;
font-size: 24px;
padding: 14px;
text-align:center;
content: "this site known for making up shit";
z-index: 10000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment