Last active
September 17, 2024 10:21
-
-
Save antwal/32acc09c8bfcf9a16c33f37104f2506c to your computer and use it in GitHub Desktop.
Video Bypass (maxs19.fun, maxstream.video)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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