Enables infinite scrolling and HLS playback; disables sticky profile
当前为
// ==UserScript==
// @name Nitter Minimal Prefs: Infinite Scroll + HLS
// @description Enables infinite scrolling and HLS playback; disables sticky profile
// @match https://nitter.net/*
// @grant none
// @version 0.0.1.20250429143446
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
(function() {
if (sessionStorage.getItem('nitterPrefsSet')) return;
fetch('https://nitter.net/saveprefs', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams({
referer: '/',
infiniteScroll: 'on',
hlsPlayback: 'on'
// Exclude stickyProfile to disable it
})
}).then(() => {
sessionStorage.setItem('nitterPrefsSet', 'true');
});
})();