This userstyle hides all premium stuff on Trakt.
Hide Premium Stuff on Trakt by rahaaatul
Details
Authorrahaaatul
LicenseNo License
Categorytrakt.tv
Created
Updated
Size965 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Currently only works on homepage.
Source code
/* ==UserStyle==
@name Hide Premium Stuff
@version 20241123.18.00
@namespace https://userstyles.world/style/19445/hide-premium-stuff-on-trakt
@description This userstyle hides all premium stuff on Trakt.
@homepage https://userstyles.world/style/19445/hide-premium-stuff-on-trakt
@author Rahatul Ghazi
==/UserStyle== */
@-moz-document domain("trakt.tv") {
/* Hide Premium stuff on Home page */
/* Hide Get VIP button */
.btn-vip.btn {
display: none
}
/* Your Profile */
.btn-dashboard.btn:nth-of-type(1),
.two-lines.text > .yir-loader {
display: none
}
/* Up Next */
#ondeck-wrapper > .container > h2 > .feed-icons > span {
display: none
}
/* Upcoming Schedule */
#schedule-wrapper > .container > h2 > .feed-icons {
display: none
}
/* Last 30 Days */
.yir-loader.see-more-link > .see-more {
display: none
}
/* Recently watched */
.section > .feed-icons {
display: none
}
/* More button */
.page-navigator {
display: none
}
}