Skip to content

Instantly share code, notes, and snippets.

@Luzifer
Created October 6, 2019 12:07
Show Gist options
  • Save Luzifer/63830aaa8fcc4b710916afc4ab4ba535 to your computer and use it in GitHub Desktop.
Save Luzifer/63830aaa8fcc4b710916afc4ab4ba535 to your computer and use it in GitHub Desktop.
Break framed websites free from their replug.io framing
// ==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