AnimalQuery

Tries to speedup browsing by disabling content animations

As of 2017-08-16. See the latest version.

// ==UserScript==
// @name        AnimalQuery
// @description Tries to speedup browsing by disabling content animations
// @version     2017.08.16.1911
// @namespace   https://greasyfork.org/users/30-opsomh
// @grant       GM_addStyle
// @grant       unsafeWindow
// @include     *
// ==/UserScript==

(function(){
    GM_addStyle(`*, *::before, *::after{
animation-delay: 0ms !important;
animation-duration: 0ms !important;
transition: none !important;
}`
    );

    if(unsafeWindow.jQuery && unsafeWindow.jQuery.fx){
        unsafeWindow.jQuery.fx.off=true;
    }

})();