Skip to content

Instantly share code, notes, and snippets.

@Downes
Created March 26, 2023 13:45
Show Gist options
  • Save Downes/07b26f98998276d1949676f6ef313436 to your computer and use it in GitHub Desktop.
Save Downes/07b26f98998276d1949676f6ef313436 to your computer and use it in GitHub Desktop.
Mastodon Flickr Button Killer
javascript:(
function(){
var divsToHide = document.getElementsByClassName('status-card__actions');
for(var i = 0; i < divsToHide.length; i++){
divsToHide[i].style.display = "none";
}
}
)
()
@Downes
Copy link
Author

Downes commented Mar 26, 2023

Use as a bookmarklet; Create a new bookmark, edit it (by right-clicking on it), then copy the content of the gist into the URL field, then give the bookmarklet a title.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment