Forces Facebook comments to show "All Comments" or "Newest" instead of "Most Relevant" + Auto-expand replies
这些是此脚本的所有版本。 只显示代码变更过的版本。
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