File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ This is a list of websites bypassed in the MV2 version of the extension.
82
82
| https://playhindi.com | 🛑 |
83
83
| https://daominhha.com/ | ✅ |
84
84
| https://bluemediafiles.com/ | 🛑 |
85
+ | https://bluemediafile.site/ | ✅ |
85
86
| https://pcgamestorrents.org/ | ✅ |
86
87
| https://retrosping.net/ | 🛑 |
87
88
| https://mydramalist.com/ | ✅ |
Original file line number Diff line number Diff line change
1
+ import BypassDefinition from './BypassDefinition.js' ;
2
+
3
+ export default class Bluemediafile extends BypassDefinition {
4
+ constructor ( ) {
5
+ super ( ) ;
6
+ this . ensure_dom = true ;
7
+ }
8
+
9
+ execute ( ) {
10
+ if ( location . href . match ( / \/ u r l - g e n e r a t o r ( - \d + ) ? \. p h p \? u r l = / ) === null )
11
+ return ;
12
+
13
+ window . Time_Start -= 5000 ;
14
+ window . i = 0 ;
15
+ this . helpers . awaitElement ( 'input#nut[src]' , ( i ) => i . parentNode . submit ( ) ) ;
16
+ }
17
+ }
18
+
19
+ export const matches = [
20
+ 'bluemediafiles.com' ,
21
+ 'bluemediafile.sbs' ,
22
+ 'bluemediafile.site' ,
23
+ ] ;
You can’t perform that action at this time.
0 commit comments