ModButtons was a Firefox extension developed by Palancar that targeted a very specific user population: forum moderators on phpBB, vBulletin, and Invision Power Board communities during the mid-2000s, when these were the dominant web-forum platforms. The extension added a toolbar of moderator-specific actions to forum pages — bulk-delete, lock-thread, move-thread, ban-user shortcuts that the underlying forum software made available but exposed only through deep menu navigation.

What ModButtons Did

The extension worked by injecting moderator-specific action buttons into each forum page’s interface using XUL overlays and a content-script-style DOM modification layer. ModButtons detected the active forum platform from page structure (phpBB’s viewtopic.php paths, vBulletin’s showthread.php patterns, IPB’s index.php query-string signatures) and rendered the appropriate moderation shortcuts inline.

Where the forum software offered moderator actions deep inside thread-tools dropdowns or admin-panel hierarchies, ModButtons surfaced the most-used ones at the page level. The actions themselves dispatched the same form submissions the forum’s native moderator interface would dispatch — the extension was a UI layer, not a privilege-escalation tool. A non-moderator running ModButtons would see the buttons but the underlying form submissions would fail at the server because the user lacked moderator permissions.

Why It’s No Longer Active

ModButtons did not survive the Firefox 57 WebExtensions transition. More fundamentally, the forum platforms it targeted have evolved or declined: phpBB and vBulletin are still maintained but have a fraction of their mid-2000s footprint, while many of the communities have migrated to Discourse, Reddit-style platforms, or Discord. Modern Discourse natively offers a moderator action panel that solves the same workflow problem without needing a browser extension.

Modern Equivalents

For active moderators on remaining phpBB / vBulletin installations, the modern WebExtensions API supports DOM-injection patterns similar to what ModButtons used — the content_scripts declaration in a manifest allows injecting scripts and stylesheets into matching forum pages. The architecture would be different (no chrome modification, content-script sandboxing) but the user-facing functionality is replicable.

The Wayback Machine archive of palancar.net preserves the original ModButtons page.