Last active
January 14, 2023 21:32
-
-
Save felixexter/a21cdc536b48c91f7f4bcdbfaf393ad0 to your computer and use it in GitHub Desktop.
Revisions
-
felixexter revised this gist
Jun 28, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -18,5 +18,5 @@ https://trello.com/c/MMIAzcT1 ## Let's do it just like 1-2-3 1. [Install extension for your browser](http://mybrowseraddon.com/custom-style-script.html) (you can use some extension whatever you like) 2. Insert that code below for url **`https://trello.com/`**.  3. Now you can drink everything you want -
felixexter revised this gist
Jun 28, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -18,5 +18,5 @@ https://trello.com/c/MMIAzcT1 ## Let's do it just like 1-2-3 1. [Install extension for your browser](http://mybrowseraddon.com/custom-style-script.html) (you can use some extension whatever you like) 2. Insert that code below for url **`https://trello.com/`**.  3. Now you can drink everything you want -
felixexter revised this gist
Jun 28, 2017 . 1 changed file with 21 additions and 15 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,20 +1,26 @@ (shouldNotRun => { if (shouldNotRun) return window.__UNDRESS_TRELLO_LINKS__ = true const links = document.getElementsByClassName('list-card') const updateLinks = () => Array.from(links).forEach(link => { const attr = link.getAttribute('href') if (!attr) return const matched = attr.match(/\/c\/\w*/) if (!matched) return link.setAttribute('href', matched[0]) }) window.addEventListener('DOMContentLoaded', () => { updateLinks() setInterval(updateLinks, 2000) }) })(window.__UNDRESS_TRELLO_LINKS__) -
felixexter revised this gist
Jun 28, 2017 . 1 changed file with 6 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,11 @@ const links = document.getElementsByClassName('js-card-name') const updateLinks = () => Array.from(links).forEach(link => { const attr = link.getAttribute('href') if (!attr) return const matched = attr.match(/\/c\/\w*/) if (!matched) return @@ -13,4 +17,4 @@ window.addEventListener('DOMContentLoaded', () => { updateLinks() setInterval(updateLinks, 2000) }) -
felixexter revised this gist
Jun 26, 2017 . 1 changed file with 8 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,10 +4,18 @@  ``` https://trello.com/c/MMIAzcT1/461-candidates-new-%D1%82%D0%B5%D1%81%D1%82%D0%BE%D0%B2%D0%BE%D0%B5-%D0%B7%D0%B0%D0%B4%D0%B0%D0%BD%D0%B8%D0%B5-%D0%B4%D0%BB%D1%8F-%D0%BC%D0%B8%D0%B4%D0%BB-%D1%81%D0%B8%D0%BD%D1%8C%D0%BE%D1%80 ``` ## After  ``` https://trello.com/c/MMIAzcT1 ``` ## Let's do it just like 1-2-3 1. [Install extension for your browser](http://mybrowseraddon.com/custom-style-script.html) (you can use some extension whatever you like) 2. Insert that code below for url `https://trello.com/b/`.  -
felixexter created this gist
Jun 26, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ # Undress your Trello links ## Before  ## After  ## Let's do it just like 1-2-3 1. [Install extension for your browser](http://mybrowseraddon.com/custom-style-script.html) (you can use some extension whatever you like) 2. Insert that code below for url `https://trello.com/b/`.  3. Now you can drink everything you want 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ 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) })