diff --git a/src/bypasses/f/forex1pro.ts b/src/bypasses/f/forex1pro.ts deleted file mode 100644 index dfaba991..00000000 --- a/src/bypasses/f/forex1pro.ts +++ /dev/null @@ -1,16 +0,0 @@ -import BypassDefinition from '../BypassDefinition' - -export default class Forex1pro extends BypassDefinition { - constructor() { - super() - // custom bypass required bases can be set here - } - - execute() { - this.helpers.ensureDomLoaded(() => { - this.helpers.safelyAssign(`https://fx4vip.com${location.pathname}`) - }) - } -} - -export const matches = ['forex1pro.com'] 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']