Stop Tracking All

Stop tracking multiple mods at once on Nexus Mods.

Author
ewiglichtl
Daily installs
0
Total installs
2
Ratings
0 0 0
Version
1.0.1
Created
2025-08-23
Updated
2025-09-03
Size
746 Bytes
License
MIT
Applies to

Stop Tracking All

GitHub

GreasyFork

Stop tracking multiple mods at once on Nexus Mods. Use with caution!

Usage

On the Nexus Mods Tracking Centre page, open the browser console and type elStopTrackingAll() and press Enter to stop tracking all mods displayed on the current page.

Code

It is essentially a script that simulates clicks on all the stop tracking buttons.

Full code:

// ==UserScript==
// @name            Stop Tracking All
// @name:en         Stop Tracking All
// @namespace       https://github.com/ewigl/nexusmods-stop-tracking-all
// @icon            https://www.nexusmods.com/favicon.ico
// @match           https://www.nexusmods.com/mods/trackingcentre*
// @match           https://www.nexusmods.com/*/mods/trackingcentre*
// @grant           unsafeWindow
// @version         1.0.1
// @author          Licht
// @license         MIT
// @description     批量取消关注 Nexusmods 上的模组。
// @description:en  Stop tracking multiple mods at once on Nexus Mods.
// ==/UserScript==

unsafeWindow.elStopTrackingAll = () => {
  $(".toggle-track-mod").each((_i, element) => {
    element.click();
  });
};