Stop Tracking All

批量取消关注 Nexusmods 上的模组。

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Tác giả
ewiglichtl
Cài đặt hàng ngày
0
Số lần cài đặt
12
Đánh giá
1 0 0
Phiên bản
1.0.1
Đã tạo
23-08-2025
Đã cập nhật
03-09-2025
Kích thước
746 Byte
Giấy phép
MIT
Áp dụng cho

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();
  });
};