校园认证助手

兰州文理学院(Lanzhou University of Arts and Science)深澜认证助手

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         校园认证助手
// @namespace    [email protected]
// @version      0.3
// @description  兰州文理学院(Lanzhou University of Arts and Science)深澜认证助手
// @author       mrnianj
// @match        http://172.16.100.32/srun_portal_pc?ac_id=1&theme=basic
// @match        http://172.16.100.32/srun_portal_phone?ac_id=1&theme=basic
// @match        http://172.16.100.32/srun_portal_success?ac_id=1&theme=basic&srun_domain=
// @icon         https://tse1-mm.cn.bing.net/th/id/OIP-C._iGQZ2e0WM5O4u8UTc0IbwAAAA?w=141&h=146&c=7&r=0&o=5&dpr=1.25&pid=1.7
// @license      MIT
// ==/UserScript==

(function() {
  "use strict";
  let user = {
    username: "12185127030", // 学号
    password: "125262" //密码
  }
  let locationUrl = "https://cn.bing.com" //登录成功之后重定向页面

  if (location.href.indexOf("srun_portal_pc") > 0 || location.href.indexOf("srun_portal_phone") > 0) {
    document.querySelector("#username").value = user.username
    document.querySelector("#password").value = user.password
    document.querySelector("#login").click()
  }
  if (location.href.indexOf('srun_portal_success') > 0) {
    if(navigator.userAgent.indexOf("Firefox") != -1 || navigator.userAgent.indexOf("Chrome") != -1){
      window.location.href = "about:blank";
      window.close();
    }else{
        window.opener = null;
        window.open("", "_self");
        window.close();
    }
    window.location.replace(locationUrl);
  }
})();