FlyerTalk Forums - View Single Post - FlyerTalk Badges Launch
View Single Post
Old Oct 2, 2024 | 2:23 pm
  #22  
c1223
All eyes on you!
 
Join Date: Sep 2012
Location: Nottingham
Programs: BA GGL
Posts: 1,903
If anyone uses TamperMonkey then this will hide the badges:

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;
}
` );

Last edited by c1223; Oct 2, 2024 at 2:36 pm
c1223 is offline