Last active
March 22, 2023 14:45
-
-
Save qoomon/282e3058e3c506a0608029cbe41d1737 to your computer and use it in GitHub Desktop.
Userscript to bypass Safe Links
This file contains 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 Bybass Safe Links | |
// @namespace https://qoomon.github.io | |
// @version 1.0 | |
// @description try to take over the world! | |
// @author qoomon | |
// @match https://statics.teams.cdn.office.net/evergreen-assets/safelinks/1/atp-safelinks.html?* | |
// @match https://urlisolation.com/browser?* | |
// @icon https://cdn-icons-png.flaticon.com/512/388/388484.png | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
location.href = new URLSearchParams(location.search).get('url'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment