百度文库自动签到

百度文库自动签到,跳转到百度首页并关闭

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         百度文库自动签到
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  百度文库自动签到,跳转到百度首页并关闭
// @author       yuexiawode
// @match        https://wenku.baidu.com/task/browse/daily
// @match        https://www.baidu.com/
// @grant        GM_setValue
// @grant        GM_getValue
// ==/UserScript==

(function () {
    'use strict';
    // Your code here...
    function log() {
        if (document.location.href == "https://wenku.baidu.com/task/browse/daily") {
            var gbtnno=document.getElementsByClassName("g-btn-no")[0];
            if (gbtnno.textContent != "已签到") {
                GM_setValue("isclose", "0");
                gbtnno.click();
            }
            else {
                if (GM_getValue("isclose") == "0") window.open("https://www.baidu.com/", "_self");
            }
        }
        else {
            setTimeout(function () {
                if (GM_getValue("isclose") == "0") {
                    GM_setValue("isclose", "1");
                    window.close();
                }
            }, 300);
        }
    }
    setTimeout(log(), 300);
})();