Created
April 3, 2022 18:45
-
-
Save noviluni/932b00bdceb2433c83ddc328cb12134b to your computer and use it in GitHub Desktop.
Skip segurosdevida.site annoying redirects (descargaranimes.net)
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
// This code allows to skip some annyoing redirects in websites like descargaranimes.net, etc. | |
// It can be automatically injected with JS Injector, etc. | |
if (window.location.href.indexOf("segurosdevida.site") != -1) { | |
document.getElementById('wpsafe-link').getElementsByTagName('a')[0].click() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment