This helps to disable the worst feature ever created.
Yes. userContent.css applies directly to the rendered page after all security checks. userContent.css is invisible to the page's JavaScript — no way to detect or counter it.
- Navigate to
about:support→ "Profile Folder" → "Open Folder" - Create
chromefolder (if missing) - Create
chrome/userContent.csswith:
/*! Bye Bye video! ╭ᥥ╮ */
@-moz-document domain("open.spotify.com") {
video[loop][autoplay],
video[src^="blob:"] {
display: none !important;
opacity: 0 !important;
visibility: hidden !important;
}
}Go to about:config, set toolkit.legacyUserProfileCustomizations.stylesheets to true
Restart Firefox
Why This Works
- userContent.css is applied by the browser itself, not injected by extensions
- Cannot be blocked by website security policies