Created
October 6, 2019 12:07
-
-
Save Luzifer/63830aaa8fcc4b710916afc4ab4ba535 to your computer and use it in GitHub Desktop.
Break framed websites free from their replug.io framing
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 Free sites from replug.io | |
// @namespace https://luzifer.io/ | |
// @version 0.1.1 | |
// @description Break framed websites free from their replug.io framing | |
// @author Knut Ahlers | |
// @match https://rplg.co/* | |
// @grant none | |
// ==/UserScript== | |
/* | |
* Works best combined with an uBlock filter blocking everything the replug site | |
* could possibly load from anywhere: | |
* | |
* ||$domain=rplg.co,important | |
*/ | |
(() => { | |
window.location.href = document.getElementsByTagName('iframe')[0].src | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment