Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. /*
  2. ==UserScript==
  3. @name AutoSkipVideoAds
  4. @match *://*/*
  5. @version 1.0
  6. ==/UserScript==
  7. */
  8.  
  9. (function() {
  10. 'use strict'
  11. window._setTimeout = window.setTimeout
  12. window.setTimeout = function (handler, timeout, ...arg) {
  13. window._setTimeout(handler, timeout / 15, ...arg)
  14. }
  15. window._setTimeout('window.setTimeout = window._setTimeout', 10000)
  16.  
  17. window.rate = 1000
  18. window.Date.now = () => { return new Date().getTime() + (window.rate += 1000) }
  19. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement