Skip to content

Instantly share code, notes, and snippets.

View tarikbc's full-sized avatar
🚀

Tarik Caramanico tarikbc

🚀
View GitHub Profile
@tarikbc
tarikbc / removeSmooth.js
Created May 23, 2023 18:45
Remove smooth scrolling from website
((el = [...document.getElementsByTagName('script')].find(tag => tag.outerHTML.includes('scroll'))) => el ? el.parentNode.removeChild(el) : null)()