use discord app to open discord link instead of open in browser
当前为
// ==UserScript==
// @name open discord link in app
// @namespace https://github.com/x94fujo6rpg/SomeTampermonkeyScripts
// @version 0.01
// @description use discord app to open discord link instead of open in browser
// @author x94fujo6
// @match *://*/*
// ==/UserScript==
/* jshint esversion: 9 */
(function () {
let reg = /https\:\/\/(discordapp\.com\/channels.*|discord\.com\/channels.*)/,
links = document.querySelectorAll("a"),
discord_links = [...links].filter(a => a.href.match(reg));
[...discord_links].forEach(a => a.href = a.href.replace(reg, "discord://$1"));
})();