Skip to content

Instantly share code, notes, and snippets.

@nbonamy
Last active February 1, 2024 20:24
Show Gist options
  • Select an option

  • Save nbonamy/cfdcdd9448bf32a05285625a78e68478 to your computer and use it in GitHub Desktop.

Select an option

Save nbonamy/cfdcdd9448bf32a05285625a78e68478 to your computer and use it in GitHub Desktop.
t.co links fixer
setInterval(() => {
let links = document.getElementsByTagName('a')
for (let link of links) {
let href = link.href
if (href.indexOf('https://t.co/') === 0) {
link.href = `http://redirect.bonamy.fr/?url=${href}`
}
}
}, 500)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment