Skip to content

Instantly share code, notes, and snippets.

@vitoo
Last active June 25, 2021 13:29
Show Gist options
  • Save vitoo/8fc9b5cf3ce1ee66dbb3dc7a8da72dd2 to your computer and use it in GitHub Desktop.
Save vitoo/8fc9b5cf3ce1ee66dbb3dc7a8da72dd2 to your computer and use it in GitHub Desktop.
archv.user.js
// ==UserScript==
// @name archv.user.js
// @version 0.1
// @grant none
// @include /^(http|https):\/\/www\.jeuxvideo\.com\/forums\/(.*)$/
// ==/UserScript==
let topic410 = false;
if(document.getElementsByClassName("img-erreur")[0] && document.getElementsByClassName("img-erreur")[0].src == "https://www.jeuxvideo.com/img/erreurs/e410.png"){
topic410 = true;
}
if(topic410){
var url = document.location.href.replace("jeuxvideo.com","jvarchive.com");
document.location.href=url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment