We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3d1626 commit 45b6c8dCopy full SHA for 45b6c8d
Changer.js
@@ -1,9 +1,6 @@
1
-document.addEventListener('DOMContentLoaded', () => {
+setInterval(() => {
2
const element = document.querySelector('.p3WVzB_599d5ef2ae28184 span');
3
- if (element) {
4
- const textNode = element.lastChild;
5
- if (textNode && textNode.nodeType === 3) {
6
- textNode.textContent = "1,987";
7
- }
+ if (element && element.textContent.includes("0")) {
+ element.textContent = "1,965"; // Sayıyı 1,965 ile değiştir
8
}
9
-});
+}, 100); // Her 100 milisaniyede bir çalışır
0 commit comments