raingart / Nova-YouTube-extension

Apache License 2.0
218 stars 11 forks source link

[Feature] Option to hide interaction CTAs #125

Closed pointydev closed 11 months ago

pointydev commented 12 months ago

Would love an option to hide the call to action for the like button that can be triggered by creators. This can be achieved by applying the following basic CSS:

segmented-like-dislike-button-view-model .smartimation__border,
segmented-like-dislike-button-view-model .smartimation__background {
    display: none;
}

See it in action here: https://youtu.be/obX2WdINsZo

Thanks, Elliott

raingart commented 12 months ago

No problem. I've never seen this kind of functionality before I will add "Clear pages of junk" to the plugin

Thanks for sharing

pointydev commented 12 months ago

With further research, it also appears there is one for subscriptions too:

ytd-subscribe-button-renderer .smartimation__border,
ytd-subscribe-button-renderer .smartimation__background {
    display: none;
}