>>107899415
That was probably me. But what, all the userscript was made to do is open the General filter section instead of the Guide filter section when you click the Filters settings tab, and I think it still does.
if you also want to open the filters tab instead of the Main tab when you open settings then here you go:
// ==UserScript==
// @name chanX - default to general filter setting
// @namespace http://tampermonkey.net/
// @version 2026-01-18
// @description try to take over the world!
// @author You
// @match https://boards.4chan.org/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.addEventListener("OpenSettings", (e) => {
//If first opening settings menu, open the filters tab
const is_settings_first_opened = e.target === document.querySelector('#overlay');
if(is_settings_first_opened) {
document.querySelector('.tab-filter').click();
}
//When clicking the Filter tab, open the General section instead of the default Guide section
const is_filter_the_current_tab = e.target === document.querySelector('.section-filter');
if(!is_filter_the_current_tab) { return; }
const general_option = document.querySelector('option[value="general"]');
general_option.selected = true;
const filter_dropdown = document.querySelector('select[name="filter"]');
filter_dropdown.dispatchEvent(new Event("change"));
});
})();
It goes right to the Filters tab, then the General section :)