KimCartoonAntiEarrape

Removes earrape intro from KimCartůn.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name KimCartoonAntiEarrape
// @namespace KimCartoonBoiz
// @description Removes earrape intro from KimCartůn.
// @description:en Removes earrape intro from KimCartůn.
// @author TitoDick69XLoliFan420Fakfest
// @include http://kimcartoon.*/*
// @include https://kimcartoon.*/*
// @include http://www.kimcartoon.*/*
// @include http://www.kimcartoon.*/*
// @include http://rapidvideo.*/*
// @include https://rapidvideo.*/*
// @include http://www.rapidvideo*/*
// @include https://www.rapidvideo.*/*
// @version 0.69m9
// @grant none
// ==/UserScript==
  var myelementz = [];
  var thresh=6;

setInterval(function(){
   ProcezzVideoz(document);
},350);

function ProcezzVideoz(docme)
{
     var lizt = document.getElementsByTagName("video");
    for (i = 0; i < lizt.length; i++) {
      if(lizt[i].currentTime<thresh)
       {
         lizt[i].currentTime=thresh;
       }
      if(myelementz.indexOf(lizt[i].getAttribute("src"))<0)
     {
       myelementz.push(lizt[i].getAttribute("src"));
       lizt[i].addEventListener('loadedmetadata', function() {
         if(this.playing)
         {
           this.currentTime = thresh;
         }
         }, false);
     }
  }
}