Skip to content

Instantly share code, notes, and snippets.

@mackuba
Last active January 21, 2025 20:18
Show Gist options
  • Save mackuba/e7e865dfbc0d978a2ac21d02566b2e8f to your computer and use it in GitHub Desktop.
Save mackuba/e7e865dfbc0d978a2ac21d02566b2e8f to your computer and use it in GitHub Desktop.
Bluesky browser bookmarklet to silence notifications in the sidebar (and on the arrow-up button)
/* Create a bookmark and copy-paste this whole line as the URL: */
javascript:(function(){s=document.getElementById('disable_notif_style');if(s){s.remove()}else{s=document.createElement('style');s.id='disable_notif_style';s.innerText='nav[role=navigation] a[aria-label="Notifications"] { opacity: 0.33 !important; } nav[role=navigation] div[aria-label*="unread item"], button[aria-label^="Load new"] svg + div[style*="border-color"] { display: none; }';document.head.appendChild(s);}})()
/* Expanded code: */
function toggleNotifications() {
let s = document.getElementById('disable_notif_style');
if (s) {
s.remove();
} else {
s = document.createElement('style');
s.id = 'disable_notif_style';
s.innerText =
'nav[role=navigation] a[aria-label="Notifications"] { opacity: 0.33 !important; } ' +
'nav[role=navigation] div[aria-label*="unread item"] { display: none; }' +
'button[aria-label^="Load new"] svg + div[style*="border-color"] { display: none; }';
document.head.appendChild(s);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment