NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name NoFocusSound_on_coub.com // @description убирает отключение звука при изменении фокуса с окна coub.com. Кароч, звук не отключается у кубов. // @author код - winnz | идея -pepsioner // @include https://coub.com/* // @match https://coub.com/* // @include http://coub.com/* // @match http://coub.com/* // @version 1 // @grant none // ==/UserScript== (function() { 'use strict'; setInterval(function(){ $(window).off('blur'); $(document).off('visibilitychange'); }, 2000); // Your code here... })();