Created
March 4, 2026 14:25
-
-
Save chrisdone-artificial/880ff097bf93eab3ee743d7147b5336a to your computer and use it in GitHub Desktop.
Auto-follow Slack 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
| // ==UserScript== | |
| // @name Auto-follow Slack links | |
| // @version 1 | |
| // @match https://artificial.slack.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| setInterval(() => { | |
| document.querySelectorAll('a').forEach((a) => { | |
| if (a.innerText == 'open this link in your browser') { | |
| a.click(); | |
| } | |
| }); | |
| }, 500); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment