File tree 1 file changed +28
-1
lines changed
1 file changed +28
-1
lines changed Original file line number Diff line number Diff line change 1
1
// ==UserScript==
2
2
// @name tikt0kcounter bypass
3
3
// @namespace http://tampermonkey.net/
4
- // @version 2025-01 -16
4
+ // @version 2025-04 -16
5
5
// @description try to take over the world!
6
6
// @author You
7
7
// @match https://*/*
@@ -24,7 +24,34 @@ if(h2psa && h2psa.textContent.indexOf('HEVC-PSA') > 0 && GM_getValue('telegram_b
24
24
25
25
26
26
27
+ if ( window . location . href . startsWith ( "https://psa.wf/" ) ) {
28
+ document . querySelectorAll ( 'a[href^="https://psa.wf/goto/"]' ) . forEach ( link => {
29
+ const xdaHref = "https://moviezapiya.fun/?userLink=" + btoa ( link ) ;
30
+ const xdaLink = document . createElement ( "a" ) ;
31
+ xdaLink . href = xdaHref ;
32
+ xdaLink . textContent = " [bypass]" ;
33
+ xdaLink . style . marginLeft = "5px" ;
34
+ xdaLink . target = "_blank" ; // optional: open in new tab
27
35
36
+ link . insertAdjacentElement ( "afterend" , xdaLink ) ;
37
+ } ) ;
38
+ }
39
+
40
+
41
+ if ( window . location . href . startsWith ( "https://moviezapiya.fun/" ) ) {
42
+ const urlParams = new URLSearchParams ( window . location . search ) ;
43
+ const userLinkParam = urlParams . get ( "userLink" ) ;
44
+
45
+ if ( userLinkParam ) {
46
+ const interval = setInterval ( ( ) => {
47
+ const input = document . getElementById ( "userLink" ) ;
48
+ if ( input ) {
49
+ input . value = atob ( userLinkParam ) ;
50
+ clearInterval ( interval ) ;
51
+ }
52
+ } , 200 ) ; // check every 200ms
53
+ }
54
+ }
28
55
29
56
30
57
You can’t perform that action at this time.
0 commit comments