Small update to the Tampermonkey script. The infinite scroll loads the images with a relative URL (whereas the original page load is with an absolute URL).
Code:
// ==UserScript==
// @name Hide Badge
// @version 1
// @description Hide Badges on FlyerTalk
// @match https://*.flyertalk.com/*
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
GM_addStyle ( `
.badge-fill {
display: none;
}
img[src^="https://www.flyertalk.com/forum/images/badges/"] {
display: none;
}
img[src^="images/badges/"] {
display: none;
}
` );