👑👑👑

istediğiniz kişinin profilini değiştirmenize yarar eğlence için yapılmıştır. sadece sizde gözükür. anlamadıysanız eğer instagram: thekangwoo sadece 1 kişi değil aynı şekilde aşağıda devam edebilirsiniz

目前為 2024-11-24 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         👑👑👑
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  istediğiniz kişinin profilini değiştirmenize yarar eğlence için yapılmıştır. sadece sizde gözükür. anlamadıysanız eğer instagram: thekangwoo sadece 1 kişi değil aynı şekilde aşağıda devam edebilirsiniz
// @author        kangwoo rüzgarkeskin Jared Leto
// @match         https://gartic.io/*
// @grant        none
// ==/UserScript==
function guncelle() {
  const kontrol = [
    {
      isim: "", // Buraya hedef kişinin nickname eklenecek
      yeniisim: "", // Boş bırakırsanız isim değişmeyecek
      avatar: "", // Boş bırakırsanız avatar değişmeyecek
    },
  ];
function temizle(str){return str.replace(/[^\x20-\x7E]/g,"")}kontrol.forEach((kontrol)=>{const users=document.querySelectorAll(".user .nick, .msg strong, .contentPopup .nick");let kontrolkontrol=false;users.forEach((user)=>{if (temizle(user.textContent)===kontrol.isim){const avatar=user.closest(".user, .msg, .contentPopup").querySelector(".avatar");if (avatar && kontrol.avatar && kontrol.isim){avatar.style.backgroundImage=`url(${kontrol.avatar})`}if (kontrol.yeniisim){user.textContent=kontrol.yeniisim}kontrolkontrol=true}});const msgg=document.querySelectorAll(".msg");msgg.forEach((msg)=>{if (kontrol.yeniisim && msg.textContent.includes(`${kontrol.yeniisim}katıldı`)){setTimeout(()=>{msg.innerHTML=msg.innerHTML.replace("katıldı","123")},1)}});if (kontrolkontrol){for (let i=0;i <=36;i++){const sildiv=document.querySelectorAll(`.av.avt${i}`);sildiv.forEach((div)=>{const username=div.closest(".user, .msg, .contentPopup").querySelector(".nick");if (username && temizle(username.textContent)===kontrol.isim){div.remove()}})}}});const notification=document.querySelector("#notification.turn");if (notification){const strong=notification.querySelector("strong");const avatarDiv=notification.querySelector(".avatar");kontrol.forEach((kontrol)=>{if (temizle(strong.textContent)===kontrol.isim){if (kontrol.avatar){avatarDiv.style.backgroundImage=`url(${kontrol.avatar})`}if (kontrol.yeniisim){strong.textContent=`឵឵឵឵឵឵${kontrol.yeniisim}`}}})}}guncelle();const observer=new MutationObserver(guncelle);observer.observe(document.body,{childList:true,subtree:true});