FlyerTalk Forums - View Single Post - FlyerTalk Badges Launch
View Single Post
Old Oct 6, 2024 | 4:33 am
  #141  
c1223
All eyes on you!
 
Join Date: Sep 2012
Location: Nottingham
Programs: BA GGL
Posts: 1,900
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;
}
` );
c1223 is offline