Отключалка надоедливых CSS3-анимаций в Хроме.
https://dev.webonomic.nl/how-to-disable-css-transforms-transistions-and-animations
manifest.json
{
"manifest_version" : 2,
"name" : "Animation disabler",
"description" : "Disables CSS animations on web pages.",
"version" : "1.0",
"content_scripts" : [
{
"matches" : [
"http://*/*",
"https://*/*"
],
"css" : [
"user.css"
],
"run_at" : "document_start"
}
]
}
user.css
*, :before, :after {
/*CSS transitions*/
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;
/*CSS animations*/
-o-animation: none !important;
-moz-animation: none !important;
-ms-animation: none !important;
-webkit-animation: none !important;
animation: none !important;
}