Greasy Fork is available in English.

TRAnimeİzle Yorum Gizleyici

TRAnimeİzle sitesinde anime izlerken yorumları açmanızı/kapatmanıza olanak sağlar.

  1. // ==UserScript==
  2. // @name TRAnimeİzle Yorum Gizleyici
  3. // @namespace http://myanimelist.net/profile/kyoyatempest
  4. // @version 1.0
  5. // @description TRAnimeİzle sitesinde anime izlerken yorumları açmanızı/kapatmanıza olanak sağlar.
  6. // @author kyoyacchi
  7. // @match https://www.tranimeizle.co/*
  8. // @grant none
  9. // @run-at document-end
  10. // @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://www.tranimeizle.co&size=64
  11. // @license GPL-3.0
  12.  
  13. // ==/UserScript==
  14. if (window.location.href.split("/")[3] == "profil"){
  15. return
  16. }
  17.  
  18. let sayi = document.querySelectorAll(".headerSized")[1].textContent.split("(")[1].replace(")","")
  19. let ar = []
  20. ar.push(sayi)
  21. function Bas () {
  22. document.querySelector(".comments-list").style.display = "none"
  23. }
  24. //window.onload = function () {
  25. Bas()
  26. //}
  27. let x = document.querySelectorAll(".headerSized")[1]
  28.  
  29. let yazı = `${ar[0]||0} Yorumu Aç/Kapat`
  30.  
  31. x.childNodes[0].textContent = yazı
  32. x.addEventListener("click",(e) => {
  33.  
  34. let yorumlar = document.querySelector(".comments-list").style.display
  35. if (yorumlar == "none") {
  36. document.querySelector(".comments-list").style.display = "block"
  37. x.childNodes[0].textContent = `${ar[0]} Yorumu Kapat`
  38. } else {
  39. document.querySelector(".comments-list").style.display = "none"
  40. x.childNodes[0].textContent = `${ar[0]} Yorumu Aç`
  41. }
  42. });