// ==UserScript== // @name Unblock GoGuardian Blocked websites // @namespace https://raw.githubusercontent.com/xyti/userscripts/main/unblock-goguardian-blocked-websites.user.js // @version 1 // @description You have to download Iframe-allow(https://chrome.google.com/webstore/detail/iframe-allow/gifgpciglhhpmeefjdmlpboipkibhbjg) first to access most websites. Works for websites that use X-Frame-Options: allow or X-Frame-Options: deny. // @author xyti // @match http://blocked.com-default.ws/* // @grant none // ==/UserScript== (function() { 'use strict'; document.documentElement.innerHTML='Blocked'; })();