Skip to content

Instantly share code, notes, and snippets.

View t0qen's full-sized avatar
🎯
Focusing

𝒅𝒓𝒆𝒂𝒎𝒔 t0qen

🎯
Focusing
View GitHub Profile
@t0qen
t0qen / gist:c40867a82287be3888860c1b15ddaa7b
Created October 3, 2025 19:28
Spotlight snapchat.com remover
// Remove spotlight button on snapchat.com
function removeElements() {
const elements = document.querySelectorAll('.kxqcc');
elements.forEach(el => el.remove());
if (elements.length > 0) {
console.log(`${elements.length} élément(s) avec la classe kxqcc supprimé(s)`);
}
}
// Remove spotlight button on snapchat.com
function removeElements() {
const elements = document.querySelectorAll('.kxqcc');
elements.forEach(el => el.remove());
if (elements.length > 0) {
console.log(`${elements.length} élément(s) avec la classe kxqcc supprimé(s)`);
}
}