From d3809d20179eed04145979ff5c98516be9dfffe0 Mon Sep 17 00:00:00 2001 From: depthso <86912923+depthso@users.noreply.github.com> Date: Sun, 8 Oct 2023 11:04:24 +0100 Subject: [PATCH] Update auto-uwp.js --- auto-uwp.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/auto-uwp.js b/auto-uwp.js index f4a2db2..44ea6a8 100644 --- a/auto-uwp.js +++ b/auto-uwp.js @@ -1,3 +1,10 @@ +// Created by depso 😼 +// This plugin allows UWP to be launched from the Roblox website + +// [🎇] Please install TamperMonkey in-order to run this extension +// https://www.tampermonkey.net/ + + // ==UserScript== // @name UWP for the Roblox website // @version 1.0 @@ -7,10 +14,16 @@ // @match https://roblox.com/* // @icon https://cdn.discordapp.com/avatars/1085827557410209832/a73faa8fc4865cbb14a5bb72f95d5e3d.webp?size=80 // @run-at document-start +// @license MIT // ==/UserScript== const Protocall = "roblox://experiences/start"; +// roblox-player:// - Web protocall +// roblox:// - UWP protocall +// robloxmobile:// - Mobile protocall + + const FollowUserToExperience = function(userId) { window.location.href = `${Protocall}?userId=${userId}`; };