Remove Youtube Activity Check - Fork

Removes youtube's new "are you still there" experiment - forked from https://greasyfork.org/scripts/35157

Από την 21/11/2018. Δείτε την τελευταία έκδοση.

// ==UserScript==
// @name         Remove Youtube Activity Check - Fork
// @description  Removes youtube's new "are you still there" experiment - forked from https://greasyfork.org/scripts/35157
// @include      *://*.youtube.com/*
// @version      2.0
// @grant        none
// @namespace https://greasyfork.org/users/227479
// ==/UserScript==

(function() {
    
    'use strict';
    
    setInterval(function() {
        
        function bo () {
            return 0;
        }
        
        unsafeWindow.yt.util.activity.getTimeSinceActive = exportFunction (bo, unsafeWindow.yt.util.activity.getTimeSinceActive);
        
    }, 1000);

})();