Skip to content

Commit

Permalink
Add bluemediafile bypass
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcyclo committed Oct 26, 2023
1 parent aa627da commit 3987d7b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/bypasses/bluemediafile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import BypassDefinition from './BypassDefinition.js';

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

execute() {
if (location.href.match(/\/url-generator(-\d+)?\.php\?url=/) === null)
return;

window.Time_Start -= 5000;
window.i = 0;
this.helpers.awaitElement('input#nut[src]', (i) => i.parentNode.submit());
}
}

export const matches = [
'bluemediafiles.com',
'bluemediafile.sbs',
'bluemediafile.site',
];

0 comments on commit 3987d7b

Please sign in to comment.