aydym.com

free aydym.com

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @namespace   aydym.com free
// @name        aydym.com
// @locale      en-En
// @description free aydym.com
// @match         *://aydym.com/*
// @grant       none
// @version     1.0
// @author      -
// @icon         https://www.google.com/s2/favicons?sz=64&domain=aydym.com
// @run-at      document-start
// @license MIT
// ==/UserScript==

class myXMLHttpRequest extends XMLHttpRequest {
  constructor() {
    super();
    this.onreadystatechange = function () {
      if (this.readyState === 4) {
        if (this.responseURL.startsWith("https://aydym.com/api/v1/app/settings")) {
          const response = JSON.parse(this.responseText);
          if ("premiumEnabled" in response) {
            response.premiumEnabled = true;
          }
          Object.defineProperty(this, "responseText", {
            value: JSON.stringify(response),
          });
        }
        if (this.responseURL.startsWith("https://aydym.com/api/v1/profile")) {
          const response = JSON.parse(this.responseText);
          if ("profileType" in response) {
            response.profileType = "PREMIUM";
          }
          Object.defineProperty(this, "responseText", {
            value: JSON.stringify(response),
          });
        }
      }
    };
  }
}

XMLHttpRequest = myXMLHttpRequest;