diff --git a/src/bypasses/s/shortmoz.ts b/src/bypasses/s/shortmoz.ts deleted file mode 100644 index 3d53d6f3..00000000 --- a/src/bypasses/s/shortmoz.ts +++ /dev/null @@ -1,16 +0,0 @@ -import BypassDefinition from '../BypassDefinition'; - -export default class Shortmoz extends BypassDefinition { - constructor() { - super() - // custom bypass required bases can be set here - } - - execute() { - (window as any).setInterval = (f => setTimeout(f,1)) as any - this.helpers.awaitElement("a.btn.redirect[href^='http']", a => - this.helpers.safelyNavigate(a.href)) - } -} - -export const matches = ['shortmoz.link'] diff --git a/src/bypasses/s/srtam.ts b/src/bypasses/s/srtam.ts deleted file mode 100644 index 2ab7fd45..00000000 --- a/src/bypasses/s/srtam.ts +++ /dev/null @@ -1,22 +0,0 @@ -import BypassDefinition from '../BypassDefinition' - -export default class Srtam extends BypassDefinition { - constructor() { - super() - // custom bypass required bases can be set here - } - - execute() { - this.helpers.ensureDomLoaded(() => { - if (document.querySelector(".skip-container")) { - let form = document.createElement("form") - form.method = "POST" - form.innerHTML = "" - form = document.documentElement.appendChild(form) - this.helpers.countIt(() => form.submit()) - } - }) - } -} - -export const matches = ['srt.am'] diff --git a/src/bypasses/y/ytsubme.ts b/src/bypasses/y/ytsubme.ts deleted file mode 100644 index c2842075..00000000 --- a/src/bypasses/y/ytsubme.ts +++ /dev/null @@ -1,18 +0,0 @@ -import BypassDefinition from '../BypassDefinition' - -export default class Ytsubme extends BypassDefinition { - constructor() { - super() - // custom bypass required bases can be set here - } - - execute() { - this.helpers.ensureDomLoaded(() =>{ - this.helpers.ifElement("a#link", addr => { - this.helpers.safelyNavigate(addr.href) - }) - }) - } -} - -export const matches = ['ytsubme.com']