Skip to content

Commit c358e00

Browse files
authored
Update Tikt0kcounter_bypass.user.js
1 parent 27d2e28 commit c358e00

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

Tikt0kcounter_bypass.user.js

+28-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name tikt0kcounter bypass
33
// @namespace http://tampermonkey.net/
4-
// @version 2025-01-16
4+
// @version 2025-04-16
55
// @description try to take over the world!
66
// @author You
77
// @match https://*/*
@@ -24,7 +24,34 @@ if(h2psa && h2psa.textContent.indexOf('HEVC-PSA') > 0 && GM_getValue('telegram_b
2424

2525

2626

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
2735

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+
}
2855

2956

3057

0 commit comments

Comments
 (0)