Forces Facebook comments to show "All Comments" or "Newest" instead of "Most Relevant" + Auto-expand replies
這裡只顯示彼此間有代碼差異的版本。 顯示所有版本。
Version 2.2 (2025-09-16) - Major Stability & Reliability Update
This is a significant update focused on fixing critical bugs and dramatically improving the reliability of the reply expansion feature.
Bug Fixes
Improvements
const CONFIG = { sortPreference: "all", // "newest" or "all" debug: true, // Console logging expandReplies: true, // Auto-expand replies replyExpandDelay: 1000, // Delay between expansions (ms) viewportOnly: true // Only expand visible replies };
Detects reply buttons in:
sortPreference = "all"
DEBUG = true
view_option
sort_by
isInitialFetch
Same as before - just change the setting at the top:
const sortPreference = "all"; // for all comments const sortPreference = "newest"; // for newest first
Note: If something breaks, check the browser console with DEBUG = true and let me know what you see!
facebook comment sorter: fix various known bug, major update