Skip to content

Commit

Permalink
port: downloadr.in bypass
Browse files Browse the repository at this point in the history
  • Loading branch information
driedpampas authored Sep 20, 2023
1 parent 9dde3da commit 67648dd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/bypasses/downloadrin.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import BypassDefinition from './BypassDefinition.js';

export default class DownloadrIn extends BypassDefinition {
constructor() {
super();
// Custom bypass required bases can be set here
}

execute() {
// Extract query parameters from the current URL and safely navigate
const queryParams = new URL(location.href).search.slice(1);
safelyNavigate(queryParams);
}
}

export const matches = ['downloadr.in'];

0 comments on commit 67648dd

Please sign in to comment.