Crackle ads auto skip

Auto skip Crackle video ads

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Crackle ads auto skip
// @namespace    http://tampermonkey.net/
// @version      0.1.5
// @author       Thesunfei
// @match        *://*.crackle.com
// @match        *://*.crackle.com/*
// @license      MIT
// @description Auto skip Crackle video ads
// ==/UserScript==

(function() {
    'use strict';
    setInterval(() => {
        let videoContainer=document.querySelector(".cracklePlayerContainer>div");
        if (videoContainer){
            videoContainer.style.display="block";
            videoContainer.querySelector("video").play();
        }
        let video = document.querySelector("video[id*=ad-player]");
        if (video) {
            video.style.display="none";
            video.muted=true;
            if (video.duration){
                video.currentTime=video.duration;
            }
        }
    }, 500)
})();