Skip to content

Commit

Permalink
Add bypass for sh.st #227
Browse files Browse the repository at this point in the history
Signed-off-by: Bayu Satiyo <itsyuukunz@gmail.com>
  • Loading branch information
kiraio-moe committed Dec 6, 2023
1 parent 5e0389b commit 3d7db08
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/bypasses/shst.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import BypassDefinition from './BypassDefinition.js'

export default class Shst extends BypassDefinition {
constructor () {
super()
}
execute () {
this.helpers.awaitElement('#timer', () => {
window.app.options.intermediate.displayCaptcha = false
window.app.options.intermediate.timeToWait = 0
})
this.helpers.awaitElement('.skip-btn.show', () => {
this.helpers.safelyNavigate(window.app.options.intermediate.destinationUrl)
})
}
}

export const matches = ['sh.st']

0 comments on commit 3d7db08

Please sign in to comment.