Last active
May 29, 2025 09:42
-
-
Save msafadieh/2a58e3ef1c42c2b1e92d3e28a9ade0b7 to your computer and use it in GitHub Desktop.
Revisions
-
msafadieh revised this gist
Mar 31, 2020 . 1 changed file with 0 additions 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 @@ -2,7 +2,6 @@ // @name Zoom Web Client Auto Redirect // @namespace https://zoom.us // @version 0.1 // @description Automatically redirect Zoom meetings to the web client // @author Mohamad Safadieh // @license GNU AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html -
msafadieh revised this gist
Mar 31, 2020 . 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 @@ -2,7 +2,7 @@ // @name Zoom Web Client Auto Redirect // @namespace https://zoom.us // @version 0.1 // @downloadUrl https://gist.github.com/msafadieh/2a58e3ef1c42c2b1e92d3e28a9ade0b7/raw/6cfe2070b9b05d8a1b7840023d4af175b222f45c/zoom-web-client-auto-redirect.user.js // @description Automatically redirect Zoom meetings to the web client // @author Mohamad Safadieh // @license GNU AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html -
msafadieh revised this gist
Mar 31, 2020 . 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 @@ -2,7 +2,7 @@ // @name Zoom Web Client Auto Redirect // @namespace https://zoom.us // @version 0.1 // @downloadUrl https://gist.github.com/msafadieh/2a58e3ef1c42c2b1e92d3e28a9ade0b7/raw/a4a62a7fc8da9cc8b60a77e792404292776d4660/zoom-web-client-auto-redirect.user.js // @description Automatically redirect Zoom meetings to the web client // @author Mohamad Safadieh // @license GNU AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html -
msafadieh renamed this gist
Mar 31, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
msafadieh revised this gist
Mar 31, 2020 . 1 changed file with 2 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 @@ -6,12 +6,12 @@ // @description Automatically redirect Zoom meetings to the web client // @author Mohamad Safadieh // @license GNU AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html // @include /https:\/\/([a-z0-9\-]+\.)?zoom\.us\/([sj])\/([0-9]+).*/ // @grant none // ==/UserScript== (function() { const match = window.location.href.match(/https:\/\/([a-z0-9\-]+\.)?zoom\.us\/([sj])\/([0-9]+).*/); const prefix = match[1] || ""; const end = match[2] === "j" ? "join/" + match[3] : match[3] + "/start"; window.location.href = "https://" + prefix + "zoom.us/wc/" + end; -
msafadieh revised this gist
Mar 31, 2020 . 1 changed file with 2 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 @@ -6,12 +6,12 @@ // @description Automatically redirect Zoom meetings to the web client // @author Mohamad Safadieh // @license GNU AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html // @include /https:\/\/([a-z0-9\-]+\.)?zoom.us\/([sj])\/([0-9]+).*/ // @grant none // ==/UserScript== (function() { const match = window.location.href.match(/https:\/\/([a-z0-9\-]+\.)?zoom.us\/([sj])\/([0-9]+).*/); const prefix = match[1] || ""; const end = match[2] === "j" ? "join/" + match[3] : match[3] + "/start"; window.location.href = "https://" + prefix + "zoom.us/wc/" + end; -
msafadieh revised this gist
Mar 31, 2020 . 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 @@ -6,7 +6,7 @@ // @description Automatically redirect Zoom meetings to the web client // @author Mohamad Safadieh // @license GNU AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html // @include /https:\/\/([a-z0-9\-]+.)?zoom.us\/([sj])\/([0-9]+).*/ // @grant none // ==/UserScript== -
msafadieh revised this gist
Mar 31, 2020 . 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 @@ -11,7 +11,7 @@ // ==/UserScript== (function() { const match = window.location.href.match(/https:\/\/([a-z0-9\-]+.)?zoom.us\/([sj])\/([0-9]+).*/); const prefix = match[1] || ""; const end = match[2] === "j" ? "join/" + match[3] : match[3] + "/start"; window.location.href = "https://" + prefix + "zoom.us/wc/" + end; -
msafadieh revised this gist
Mar 31, 2020 . 1 changed file with 1 addition 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 @@ -2,6 +2,7 @@ // @name Zoom Web Client Auto Redirect // @namespace https://zoom.us // @version 0.1 // @downloadUrl https://gist.github.com/msafadieh/2a58e3ef1c42c2b1e92d3e28a9ade0b7/raw/a4a62a7fc8da9cc8b60a77e792404292776d4660/zoom-web-client-auto-redirect.js // @description Automatically redirect Zoom meetings to the web client // @author Mohamad Safadieh // @license GNU AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html -
msafadieh created this gist
Mar 31, 2020 .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,17 @@ // ==UserScript== // @name Zoom Web Client Auto Redirect // @namespace https://zoom.us // @version 0.1 // @description Automatically redirect Zoom meetings to the web client // @author Mohamad Safadieh // @license GNU AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html // @include /https:\/\/([a-z]+.)?zoom.us\/([sj])\/([0-9]+).*/ // @grant none // ==/UserScript== (function() { const match = window.location.href.match(/https:\/\/([a-z]+.)?zoom.us\/([sj])\/([0-9]+).*/); const prefix = match[1] || ""; const end = match[2] === "j" ? "join/" + match[3] : match[3] + "/start"; window.location.href = "https://" + prefix + "zoom.us/wc/" + end; })();