Bitchute.com video ADS


Description of the issue:
Bitchute shows video ads while it doesn’t using uBlock origin Lite (complete mode).

Exact URL of the website in question:

@fanboynz here is a little solution i came up with to skip them the moment they show up (if you decide to implement it make sure it gets properly injected inside all iframes present in the webpage)

// ==UserScript==
// @name         Bitchute Remove VideoADS
// @namespace    http://tampermonkey.net/
// @version      2025-01-18
// @description  Auto Skip VideoADS
// @author       You
// @match        https://www.bitchute.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bitchute.com
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function () {
    'use strict';

 document.addEventListener("DOMContentLoaded", (event) => {
	let intervalid;
 intervalid= setInterval(() => {
      if(document.querySelector('#skip-button'))
		 {
		  document.querySelector('#double_player_html5_api').currentTime=1000;

	 }
  }, 500);
});
})();