Skip ads on nova

try to take over the world!

  1. // ==UserScript==
  2. // @name Skip ads on nova
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://media.cms.nova.cz/*
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-1.12.4.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. setTimeout(function() {
  16. $('.rmp-ad-container').remove();
  17. }, 3000);
  18. // Your code here...
  19. })();