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 fcecf2c commit f3d1626Copy full SHA for f3d1626
Changer.js
@@ -1,8 +1,9 @@
1
-const element = document.querySelector('.p3WVzB_599d5ef2ae28184 span');
2
-if (element) {
3
- // Sayısal kısmı izole et ve sadece onu değiştir
4
- const textNode = element.lastChild; // Son çocuk öğesi, burada "0"
5
- if (textNode && textNode.nodeType === 3) { // Text node olup olmadığını kontrol et
6
- textNode.textContent = "1,987"; // Sayıyı 1987 ile değiştir
+document.addEventListener('DOMContentLoaded', () => {
+ const element = document.querySelector('.p3WVzB_599d5ef2ae28184 span');
+ if (element) {
+ const textNode = element.lastChild;
+ if (textNode && textNode.nodeType === 3) {
+ textNode.textContent = "1,987";
7
+ }
8
}
-}
9
+});
0 commit comments