- Install extension for your browser (you can use some extension whatever you like)
- Insert that code below for url
https://trello.com/b/. - Now you can drink everything you want
Last active
January 14, 2023 21:32
-
-
Save felixexter/a21cdc536b48c91f7f4bcdbfaf393ad0 to your computer and use it in GitHub Desktop.
Undress your Trello links
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
| const links = document.getElementsByClassName('js-card-name') | |
| const updateLinks = () => | |
| Array.from(links).forEach(link => { | |
| const matched = link.getAttribute('href').match(/\/c\/\w*/) | |
| if (!matched) return | |
| link.setAttribute('href', matched[0]) | |
| }) | |
| window.addEventListener('DOMContentLoaded', () => { | |
| updateLinks() | |
| setInterval(updateLinks, 2000) | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


