Greasy Fork is available in English.

Animations Off!🚀

Stop all CSS animations on every website.

// ==UserScript==
// @name           Animations Off!🚀
// @description    Stop all CSS animations on every website.
// @author         You
// @version        2.2
// @match          *://*/*
// @exclude        *://*/*login*
// @exclude        *://*/*signin*
// @exclude        https://*.microsoftonline.com/*
// @exclude        https://teams.microsoft.com/*
// @exclude        https://www.netflix.com/*
// @exclude        https://www.mediamarkt.de/*
// @exclude        https://www.saturn.de/*
// @exclude        https://www.amazon.de/*
// @exclude        https://www.ebay.de/*
// @exclude        https://m.shein.com/*
// @exclude        https://www.gutefrage.net/*
// @grant          GM_addStyle
// @run-at         document-start
// @namespace https://greasyfork.org/users/1115027
// ==/UserScript==


GM_addStyle(`
  *, *:before, *:after {

     animation:             none !important;
     transition:            none !important;
     perspective:           none !important;
     backface-visibility: hidden !important;
     will-change:           auto !important;
     transform-style:       flat !important;
     box-shadow:            none !important;
     backdrop-filter:       none !important;

  };

`);