ducon2016 Posté(e) le 2 février Posté(e) le 2 février (modifié) 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. Modifié le 3 février par ducon2016 5
ducon2016 Posté(e) le 3 février Auteur Posté(e) le 3 février (modifié) 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); } }); })();  Modifié le 3 février par ducon2016 1
Messages recommandés
Veuillez vous connecter pour commenter
Vous pourrez laisser un commentaire après vous êtes connecté.
Connectez-vous maintenant