Atılım Identity Portal Autocomplete

This script provides autocomplete functionality on the Atılım University Identity Portal. It facilitates logging in by using the password saved in your password manager.

  1. // ==UserScript==
  2. // @name Atılım Identity Portal Autocomplete
  3. // @name:tr Atılım Kimlik Portal Otodoldurma
  4. // @namespace https://kimlik.atilim.edu.tr
  5. // @version 1.0
  6. // @description This script provides autocomplete functionality on the Atılım University Identity Portal. It facilitates logging in by using the password saved in your password manager.
  7. // @description:tr Bu script, Atılım Üniversitesi Kimlik Portalı'nda otomatik tamamlama işlevselliği sağlar. Şifre yöneticinizde kaydedilmiş olan şifrenizi kullanarak giriş yapmanızı kolaylaştırır.
  8. // @author Babico
  9. // @match https://kimlik.atilim.edu.tr*
  10. // @icon https://www.atilim.edu.tr/assets/frontend/img/favicon/android-icon-192x192.png
  11. // @grant none
  12. // @license MIT
  13. // @supportURL https://github.com/babico/atilim-kimlik-autocomplete/issues
  14. // ==/UserScript==
  15.  
  16. (function() {
  17. /*
  18. * Kullandığınız tarayıcıya göre şifrenizi https://kimlik.atilim.edu.tr/ sitesine kaydedin.
  19. * Aşağıdaki linklerden tarayıcınızın şifre yöneticisine ulaşabilirisiz:
  20. *
  21. * Depending on the browser you use, save your password for https://kimlik.atilim.edu.tr/ in your password manager.
  22. * You can access your browser's password manager using the following links:
  23. *
  24. * Chrome: chrome://settings/passwords/
  25. * Opera: opera://settings/passwords/
  26. * Safari Mac: https://support.apple.com/en-us/HT211145
  27. * Firefox: about:logins
  28. */
  29. var passElement = document.body.querySelector("input.passwd.dx-texteditor-input");
  30.  
  31. passElement.autocomplete = "on";
  32. passElement.type = "password";
  33. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址