This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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)`); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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)`); | |
| } | |
| } |