Skip to content

Commit

Permalink
Added forward on site ps4linux.com
Browse files Browse the repository at this point in the history
  • Loading branch information
harryitz committed Jul 29, 2024
1 parent 5a51357 commit 326389a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/bypasses/ps4linux.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import BypassDefinition from './BypassDefinition.js'

export default class PS4Linux extends BypassDefinition {
constructor() {
super()
this.ensure_dom = true
}

execute() {
const targetURL = document.querySelector('#skipaft > a:nth-child(1)')?.href
if (targetURL) {
this.helpers.safelyNavigate(targetURL)
}
}
}

export const matches = ['ps4linux.com']

0 comments on commit 326389a

Please sign in to comment.