CP2077 Nexus Mods Declutter
⚪ Last updated 2020⚠️ Install Order · 6 steps
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
Preview

🔍 Analysis
- 👍 12.7% endorsement rate — high engagement, a strong quality signal
- 🏆 #34 of 39 Utilities mods in this game by downloads
📋 About This Mod
Tampermonkey script to remove reshades, presets and save files from the mod list,most of them anyway.compare screenshots to see. (Madness!)
This is for switching them on and off easily, if you want a permanent solution, look at these threads:
https://forums.nexusmods.com/index.php?showtopic=9429963/#entry88303398
https://forums.nexusmods.com/index.php?showtopic=9429963/#entry88312053
// ==UserScript==
// @name Sanitize
// @namespace http://tampermonkey.net/
// @version 1. 3
// @description try to take over the world!
// @author You (are breathtaking!)
// @match https://www.nexusmods.com/cyberpunk2077
// @match https://www.nexusmods.com/cyberpunk2077/mods/*
// @match https://www.nexusmods.com/cyberpunk2077/trending/
// @match https://www.nexusmods.com/cyberpunk2077/mods/categories/
// @match https://www.nexusmods.com/cyberpunk2077?tab=*
// @grant none
// @run-at document-end
// @require https://ajax.googleapis.com/ajax/libs/jquery/3. 3. 1/jquery.min.js
// ==/UserScript==
this.$ = this.jQuery = window.jQuery.noConflict(true);
(function() {
var m = window.jQuery("#mod-list");
var g = window.jQuery("#game-mods");
if (m.length > 0 || g.length > 0)
console.log("we r here");
window.jQuery(document).ajaxStop(function () {
console.log("ajaxStop complete");
updateHTML();
window.jQuery(document).ajaxComplete(function (e, request, settings) {
console.log("ajaxComplete start to remove clutter", settings);
updateHTML();
if(g.length > 0)
console.log('g'+g.length);
var origOpen = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function() {
console.log('request started!');
this.addEventListener('load', function() {
//console.log('request completed!');
console.log('sanitize!');
updateHTML();
//location.reload();
// console.log(this.readyState); //will always be 4 (ajax is completed successfully)
// console.log(this.responseText); //whatever the response was
origOpen.apply(this, arguments);
if (document. URL.endsWith("cyberpunk2077") ||
document. URL.endsWith("cyberpunk2077/mods/") ||
document. URL.endsWith("mods/trending/") ||
document. URL.includes("mods/categories/")
//document. URL.endsWith("cyberpunk2077?tab=new+today") ||
// document. URL.endsWith("cyberpunk2077?tab=new+this+week") ||
// document. URL.endsWith("cyberpunk2077?
📊 Mod Details
- Game
- Cyberpunk 2077 Mods
- Author
- Edvin
- Version
- v1.3
- Downloads
- 1,769
- Endorsements
- 224
- Category
- Utilities
- Created
- 12/23/2020
- Updated
- 12/24/2020
🔧 How to Install Cyberpunk 2077 Mods
Download from Nexus.
📖 Full step-by-step install guide for Cyberpunk 2077 →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Cyberpunk 2077 commands, item IDs, and more.
Keep browsing — more Cyberpunk 2077 mods await