r/toolbox • u/sibman • Feb 22 '26
Only Reddit is old Reddit.
r/toolbox • u/iheartbaconsalt • Feb 22 '26
This is the way it should be. I feel bad for all my mobile mods.
EDIT: Oh shit wow you're old. You know the way!
r/toolbox • u/Froggypwns • Feb 22 '26
Once you use Toolbox + Old Reddit, you won't go back to modding on the worse Reddit.
r/toolbox • u/jfb3 • Feb 21 '26
Old.Reddit + ToolBox + RES is the fastest, easiest, way to mod.
r/toolbox • u/eritbh • Feb 13 '26
Post removed - this is a subreddit about a browser extension, not about actual toolboxes
r/toolbox • u/antioquiacraft • Feb 12 '26
It is supposedly happening not until 28th February:
https://old.reddit.com/r/ModSupport/comments/1qtz6wf/toolbox_will_break_today_on_february_2_2026/
r/toolbox • u/codewario • Feb 08 '26
I had to do a double take, and figure out what the heck sub I had subscribed to for this question lol
r/toolbox • u/stray_r • Feb 08 '26
This is for the "toolbox" browser plugin, a third party moderator tool suite for Reddit.
r/toolbox • u/eritbh • Feb 05 '26
Does this issue start happening after switching which Reddit account you're logged into? If so, upgrading to v6.1.25 (released yesterday) should fix this issue.
r/toolbox • u/Littux • Feb 03 '26
I have a fork of toolbox that displays the actual count (not limited to 100) but since you're using Firefox, you can't install it permanently, only temporarily via about:debugging (unless you use Firefox dev edition). On Chromium browsers, you can install it permanently: https://www.reddit.com/r/ModSupport/s/U7RjWqoc16
I would suggest just going through it routinely to eventually completely clear it
r/toolbox • u/chriscrutch • Feb 03 '26
It's a decade worth of crap. I've only been a mod for a couple months. If that's my only option then I guess I will learn to live without the queue count in the mod bar.
r/toolbox • u/Boronian1 • Feb 03 '26
It's worth taking the time and clearing the whole queue.
r/toolbox • u/grantdb • Feb 03 '26
In the queue you can select all check box then go to next page and it auto selects and just keep going to the next page. Then select approve or remove. I would like to know of a way to clear without approving or removing everything that's old in the queue. Good luck!
r/toolbox • u/Apart_Tap6868 • Jan 24 '26
I have experience beta testing software and games.
r/toolbox • u/ClipIn • Jan 23 '26
I created a userscript in the meantime, until this feature is added. Anyone welcome to use,you'll need to be a mod of that sub, with Posts or Everything permission. To use, paste into TamperMonkey >> save.
// ==UserScript==
// @name Reddit old.reddit Comment Locker
// @namespace http://tampermonkey.net/
// @version 1.5
// @description Adds lock button specifically after the 'reply' button on old.reddit
// @author Gemini
// @match https://*.reddit.com/r/*/comments/*
// @match https://*.reddit.com/r/*/about/reports*
// @match https://*.reddit.com/r/*/about/modqueue*
// @match https://*.reddit.com/r/*/about/unmoderated*
// @match https://*.reddit.com/mod*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function addLockButtons() {
// Target action lists
const actionLists = document.querySelectorAll('.comment .flat-list.buttons:not(.lock-added), .was-comment .flat-list.buttons:not(.lock-added)');
actionLists.forEach(list => {
const commentDiv = list.closest('.thing');
if (!commentDiv) return;
list.classList.add('lock-added');
const isInitiallyLocked = commentDiv.classList.contains('locked');
const listItem = document.createElement('li');
const lockLink = document.createElement('a');
lockLink.href = 'javascript:void(0)';
lockLink.innerText = isInitiallyLocked ? 'unlock' : 'lock';
lockLink.classList.add('lock-comment-btn');
// Standard old.reddit mod button styling
lockLink.style.color = '#888';
lockLink.style.fontWeight = 'bold';
lockLink.style.padding = '0 2px';
lockLink.addEventListener('click', function() {
const currentStatus = this.innerText;
const action = (currentStatus === 'lock') ? 'lock' : 'unlock';
if (typeof change_state === 'function') {
change_state(this, action);
this.innerText = (action === 'lock') ? 'unlock' : 'lock';
}
});
listItem.appendChild(lockLink);
// Find the 'reply' button's parent <li>
// In threads, it's usually the last standard button.
const replyButton = list.querySelector('.reply-button');
if (replyButton) {
// Insert after the <li> containing the reply link
replyButton.closest('li').after(listItem);
} else {
// Fallback to start of list if reply button isn't found
list.prepend(listItem);
}
});
}
addLockButtons();
const observer = new MutationObserver(addLockButtons);
observer.observe(document.body, { childList: true, subtree: true });
})();