Login Collback

Encrypt account and password using RSA for specific URLs and auto fill form on button click

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==
// @name         Login Collback
// @namespace    http://tampermonkey.net/
// @version      1.0
// @license MIT
// @description  Encrypt account and password using RSA for specific URLs and auto fill form on button click
// @author       Your Name
// @match        */dxdsapi/dologin
// @grant        GM_addStyle

// ==/UserScript==


(function () {
  'use strict';
  console.log('Content script loaded')


  GM_addStyle(`
    .entry {
      font-family: Fira Code, Consolas !important;
    }
    pre {
      word-wrap: break-word;
      white-space: normal;
      font-family: Fira Code, Consolas !important;
      font-size: 14px;
      font-weight: 300;
      line-height: 30px;
      color: #000;
      border: 1px solid #000;
      padding: 20px 30px;
    }
  `);


  window.addEventListener('load', () => {
    console.log('init')
    const json = JSON.parse(document.querySelectorAll(' pre')[0].innerText)

    if (json.code === '1') {
      const data = json?.data
      localStorage.setItem('userInfo', JSON.stringify(data))

      console.log('userINfo已保存到localStorage')
    }
  });
})();