Skip to content

Instantly share code, notes, and snippets.

@nhoizey
Last active October 3, 2020 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nhoizey/f681a2982b450b1d1756bf410b786821 to your computer and use it in GitHub Desktop.
Save nhoizey/f681a2982b450b1d1756bf410b786821 to your computer and use it in GitHub Desktop.
Remove faves from gallery pages
javascript:(function(){((document)=>{document.querySelectorAll('.engagement-item.fave.faved').forEach(row=>{row.closest('.photo-list-gallery-photo-view').remove();});})(window.document);})();
// Run this on a gallery page
((document) => {
document.querySelectorAll('.engagement-item.fave.faved').forEach(row => {
row.closest('.photo-list-gallery-photo-view').remove();
});
})(window.document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment