Hide name, image, and description of episodes
< 脚本 Spoiler-free Crunchyroll 的反馈
The episode's description parte actually hides the comentaries too, if just want to hide the description change:
cssE = cssE + '.expandable-section__wrapper--G-ttI p {filter: blur(12px) }';
with:
cssE = cssE + '.erc-current-media-info .expandable-section__wrapper--G-ttI p {filter: blur(12px) }';
Thanks for the feedback and fixes, sorry for the delays here. Script has been updated and should now fix this. Let me know if you're still having issues.
Still working more less in 2023, however the episodes description, the tooltip configuration and the feature of keeping the number of the episode isn't working anymore.
I've managed to censor the tooltip's info for title by adding:
cssE = cssE + '.playable-card-hover__body--PYTVW h4 { filter: blur(10px); }'
For episodes's description:
if (USER_CONFIG.EPISODE_DESCRIPTION) {
cssE = cssE + '.expandable-section__wrapper--G-ttI p {filter: blur(12px) }';
//ToolTip
cssE = cssE + '.playable-card-hover__body--PYTVW .playable-card-hover__description-wrapper--T4J30 p { filter: blur(10px) }';
}
But I don't get how to keep the episodes number and also the title of the page and the url (if turning true it doesn't do anything)