Youtube adblock replace with embed

I like to do a little trolling on youtube. This lets you keep adblocker on and simply replaces the video html with an iframe of it's own embed. Take that, Google!

Pada tanggal 19 Oktober 2023. Lihat %(latest_version_link).

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 or Violentmonkey 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         Youtube adblock replace with embed
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  I like to do a little trolling on youtube. This lets you keep adblocker on and simply replaces the video html with an iframe of it's own embed. Take that, Google!
// @author       You
// @match        https://www.youtube.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant        none
// ==/UserScript==

const checkElementInterval = setInterval(function() {
  const targetNode = document.querySelector('#title.ytd-watch-metadata h1 yt-formatted-string');

  if (targetNode !== null) {
    clearInterval(checkElementInterval); // Clear the interval
    console.log('Element loaded');
    document.querySelector('#player').innerHTML = `<iframe style="width: 100%; height: 65vh;" src="https://www.youtube.com/embed/${location.href.split('?v=')[1].split('&')[0]}?autoplay=1&auto_play=1"></iframe>`
  }
}, 500);

let currentURL = window.location.href;

function watchURLChange() {
  if (window.location.href !== currentURL) {
    console.log('URL changed');
    currentURL = window.location.href;
    if(location.href.includes("youtube.com/watch")){
        document.querySelector('#player').innerHTML = `<iframe style="width: 100%; height: 65vh;" src="https://www.youtube.com/embed/${location.href.split('?v=')[1].split('&')[0]}?autoplay=1&auto_play=1"></iframe>`
    } else {
        document.querySelector('#player').innerHTML = ""
    }
  }
}

// Set up a timer to periodically check for URL changes
setInterval(watchURLChange, 250);