ducon2016 Posted February 2, 2025 Posted February 2, 2025 (edited) Examples: https://igg-games.com/ or bluemedia garbage links or megaup or many others 1. Install pop up / pop under / layers blockers. I use firefox and two addons AT THE SAME TIME since they block different things: https://webextension.org/listing/popup-blocker.html and https://popupoff.org/ 2. Install Tampermonkey https://addons.mozilla.org/en-US/firefox/addon/tampermonkey/ 3. To deal with Megaup garbage install this with Tampermonkey: https://github.com/rejaad/Easy-MegaUp/raw/refs/heads/main/Easy MegaUp.user.js 4. To deal with Bluemedia garbage install this with Tampermonkey: https://greasyfork.org/en/scripts/423435-igg-games-bluemediafiles-bypass/code Will post more as I discover. Please feel free to share the ones you use. Edited February 3, 2025 by ducon2016 10
ducon2016 Posted February 3, 2025 Author Posted February 3, 2025 (edited) Tampermonkey script to bypass shitty links on pcgameiso.com // ==UserScript== // @name Easy GamePCIso // @namespace http://tampermonkey.net/ // @version 2025-02-03 // @description Skip ads on gamepciso.com and associates dlpsgame.com downloadgamepsp.org dlxbgame.com and nswgame.com // @author You // @match *://gamepciso.com/* // @match *://dlpsgame.com/* // @match *://downloadgamepsp.org/* // @match *://dlxbgame.com/* // @match *://nswgame.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=gamepciso.com // @grant none // ==/UserScript== (function() { 'use strict'; const lnks = document.querySelectorAll('a'); lnks.forEach( item => { const url = item.href; const start = url.indexOf("url="); const end = url.indexOf("&type="); if (( -1< start ) && (-1<end)) { item.href = atob( url.substring( start+4, end ) ); var old_element = item; var new_element = old_element.cloneNode(true); old_element.parentNode.replaceChild(new_element, old_element); } }); })(); Edited February 3, 2025 by ducon2016 4
JustinCredible81 Posted February 7 Posted February 7 (edited) Just tried your script on gamepciso, works great to skip the annoying screen where you have to do a puzzle! thanks. Edited February 7 by JustinCredible81
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now