Auto expands all image posts except NSFW ones.
< 脚本Lemmy Image Expand的反馈
Works exactly as intended.
If you want it to open NSFW posts as well, change this code:
uniqueList.forEach(function(imgPreview) { const postListing = imgPreview.closest(".post-listing"); const isExpanded = postListing.querySelector('.img-expanded') != null; const isNsfw = postListing.querySelector('.thumbnail.img-blur') != null; if(!isExpanded && !isNsfw) { imgPreview.click(); }
To this:
uniqueList.forEach(function(imgPreview) { const postListing = imgPreview.closest(".post-listing"); const isExpanded = postListing.querySelector('.img-expanded') != null; if(!isExpanded) { imgPreview.click(); }
登录以发表回复。
Works exactly as intended.
If you want it to open NSFW posts as well, change this code:
To this: