Great Suspender 'gsScrollPos-' cookies fix
by Yury
JavaScript
function rc(){var n=document.cookie.split("; "), t=n.filter(function(n){return n.startsWith("gsScrollPos")}).map(function(n){return n.replace(/=.*/,"")}); t.map(function(n){document.cookie=n+"=; Path=/; expires=Thu, 01 Jan 1970 00:00:01 GMT;"})}; rc();
//
//based on
//javascript:(function(){var n=document.cookie.split("; "),t=n.filter(function(n){return n.startsWith("gsScrollPos")}).map(function(n){return n.replace(/=.*/,"")});t.map(function(n){document.cookie=n+"=;Path=/;expires=Thu, 01 Jan 1970 00:00:01 GMT;"})})();
/*
fixed with https://stackoverflow.com/questions/10593013/delete-cookie-by-name
*/