// ==UserScript== // @name HDRezka Unrestricted // @namespace lainscripts_hdr_unr // @version 0.2 // @description Attempts to enable access to country-restricted video. // @author lainverse // @match *://hdrezka.me/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; for (let o of document.querySelectorAll('[data-restricted]')) { if (o.getAttribute('data-restricted') !== '0') { o.setAttribute('data-restricted', 0); if (o.classList.contains('active')) { o.classList.remove('active'); o.click(); } } } })();