Skip to content

Commit

Permalink
Add bypass for loot-links.com
Browse files Browse the repository at this point in the history
Fix #1274

Signed-off-by: Bayu Satiyo <itsyuukunz@gmail.com>
  • Loading branch information
kiraio-moe committed Dec 8, 2023
1 parent ecdfba6 commit 0e38128
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/bypasses/lootlinks.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import BypassDefinition from './BypassDefinition.js'

export default class Lootlinks extends BypassDefinition {
constructor () {
super()
}
execute () {
this.helpers.ensureDomLoaded(() => {
this.helpers.safelyNavigate(p['PUBLISHER_LINK']) // ignore the error
})
}
}

export const matches = ['loot-links.com']

0 comments on commit 0e38128

Please sign in to comment.