Universal Bypass
Don't waste your time with compliance. Universal Bypass automatically skips annoying link shorteners.
Get the Extension for Chrome and/or Firefox.
Understanding the Content Script
In an effort to save some bytes, I've given functions and variables some rather ambiguous names, so here's a list of them:
ms
is a list of messages for internalization:ms.tS
: Timer Skipms.tL
: Timer Leap (Removed some seconds)ms.b
: Unbypassable due to backend checks
ODP
isObject.defineProperty
ev
iseval
(I copy eval because uBlockOrigin replaces it)sT
issetTimeout
sI
issetInterval
nd
is set to true whenn
has been called so only the first call countsn(target)
tries to redirect to the target URL savelybp
is set to true when a bypass has been found and executed so the content script can end gracefullydb(domain, bypass_function)
executes the bypass function if the user is on the domain itself or on a subdomain of ithb(host_regex, bypass_function)
executes the bypass function iflocation.host
matches the given regexad(function)
ensure that the DOM has been loaded when the given function is being executedui(msg)
shows the given message on the bottom right corner of the website if enabled
Also, instead of true and false, I use !0
and !1
, respectively.
Description
Languages
JavaScript
95.2%
HTML
4.8%