Foydalanuvchi Umarxon III/common.js

Vikilug‘atdan olingan

(function () {

   "use strict";
   $(document).ready(function () {
       // Iterate over each line in the watchlist
       $(".mw-special-Watchlist .mw-changeslist-line").each(function () {
           // Check for specific usernames and hide those lines
           if (this.innerText.includes("KrBot") || this.innerText.includes("KrBot")) {
               this.style.display = "none";
           }
       });
   });

})();