Skip to content

Instantly share code, notes, and snippets.

@antwal
Last active September 17, 2024 10:21
Show Gist options
  • Save antwal/32acc09c8bfcf9a16c33f37104f2506c to your computer and use it in GitHub Desktop.
Save antwal/32acc09c8bfcf9a16c33f37104f2506c to your computer and use it in GitHub Desktop.
Video Bypass (maxs19.fun, maxstream.video)
// ==UserScript==
// @name Video Bypass (maxs19.fun, maxstream.video)
// @version 1.0.2
// @description Bypass Anti-AdBlock
// @author antwal
// @match https://*.maxs19.fun/watchfree/*
// @match https://*.maxstream.video/watchfree/*
// @grant none
// @downloadURL https://gist.github.com/antwal/32acc09c8bfcf9a16c33f37104f2506c/raw/maxstream-video-bypass.user.js
// @updateURL https://gist.github.com/antwal/32acc09c8bfcf9a16c33f37104f2506c/raw/maxstream-video-bypass.user.js
// @homepage https://gist.github.com/antwal/32acc09c8bfcf9a16c33f37104f2506c
// ==/UserScript==
(function() {
'use strict';
var iframevideo = document.getElementsByTagName("iframe")[0].getAttribute("src");
window.location.replace(iframevideo);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment