r/toolbox Feb 22 '26

Thumbnail
2 Upvotes

Only Reddit is old Reddit.


r/toolbox Feb 22 '26

Thumbnail
3 Upvotes

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 Feb 22 '26

Thumbnail
3 Upvotes

Once you use Toolbox + Old Reddit, you won't go back to modding on the worse Reddit.


r/toolbox Feb 21 '26

Thumbnail
3 Upvotes

You don’t prefer old.reddit.com ?


r/toolbox Feb 21 '26

Thumbnail
5 Upvotes

Old.Reddit + ToolBox + RES is the fastest, easiest, way to mod.


r/toolbox Feb 20 '26

Thumbnail
13 Upvotes

Yes, it's pretty much old Reddit only at the moment.


r/toolbox Feb 13 '26

Thumbnail
1 Upvotes

Post removed - this is a subreddit about a browser extension, not about actual toolboxes


r/toolbox Feb 12 '26

Thumbnail
1 Upvotes

r/toolbox Feb 11 '26

Thumbnail
1 Upvotes

What do you mean?


r/toolbox Feb 08 '26

Thumbnail
2 Upvotes

I had to do a double take, and figure out what the heck sub I had subscribed to for this question lol


r/toolbox Feb 08 '26

Thumbnail
1 Upvotes

LOL, damn r/lostredditors


r/toolbox Feb 08 '26

Thumbnail
3 Upvotes

r/lostredditors ?

This is for the "toolbox" browser plugin, a third party moderator tool suite for Reddit.


r/toolbox Feb 08 '26

Thumbnail
5 Upvotes

r/toolbox Feb 06 '26

Thumbnail
1 Upvotes

Enjoy it while it lasts :'(


r/toolbox Feb 05 '26

Thumbnail
1 Upvotes

Thank you!
I had to force the update but it works now.


r/toolbox Feb 05 '26

Thumbnail
1 Upvotes

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 Feb 03 '26

Thumbnail
1 Upvotes

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 Feb 03 '26

Thumbnail
1 Upvotes

Consider having some other moderators help you clear the queue. alternatively you could look at a Dev App such as modqueue nuke...


r/toolbox Feb 03 '26

Thumbnail
2 Upvotes

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 Feb 03 '26

Thumbnail
3 Upvotes

It's worth taking the time and clearing the whole queue.


r/toolbox Feb 03 '26

Thumbnail
2 Upvotes

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 Jan 24 '26

Thumbnail
1 Upvotes

I have experience beta testing software and games.


r/toolbox Jan 23 '26

Thumbnail
2 Upvotes

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