Greasy Fork is available in English.

Login Collback

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==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')
    }
  });
})();