open discord link in app

use discord app to open discord link instead of open in browser

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         open discord link in app
// @namespace    https://github.com/x94fujo6rpg/SomeTampermonkeyScripts
// @version      0.02
// @description  use discord app to open discord link instead of open in browser
// @author       x94fujo6
// @match        *://*/*
// ==/UserScript==
/* jshint esversion: 9 */

(async function () {
	const script_name = "open discord link in app";
	let count = 0, id;

	await wait_tab();

	id = setInterval(() => {
		let result = main();
		if (!result) {
			count++;
		}
		if (count >= 10) {
			clearInterval(id);
		}
	}, 1000);

	function main() {
		let reg = /https\:\/\/(discordapp\.com\/channels.*|discord\.com\/channels.*)/,
			links = document.querySelectorAll("a"),
			discord_links;
		if (links.length > 0) {
			discord_links = [...links].filter(a => a.href.match(reg));
			if (discord_links.length > 0) {
				[...discord_links].forEach(a => a.href = a.href.replace(reg, "discord://$1"));
				return true;
			}
		}
		return false;
	}

	function wait_tab() {
		return new Promise(resolve => {
			if (document.visibilityState === "visible") return resolve();
			document.addEventListener("visibilitychange", () => {
				if (document.visibilityState === "visible") {
					return resolve();
				}
			});
		});
	}

})();