BaiduPanAutoNextBtn

百度网盘自动下一步按钮

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         BaiduPanAutoNextBtn
// @namespace    http://tampermonkey.net/
// @version      v1.2023-12-25
// @description  百度网盘自动下一步按钮
// @author       Zszen
// @match        https://pan.baidu.com/share/init?surl=*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    //$x('//div[@id="submitBtn"]')[0].click()
    var inputElement = document.querySelector('#accessCode');
    var inputValue = inputElement.value;
    //console.log(inputValue);
    if(inputValue!=""){
        var submitBtn = document.evaluate('//div[@id="submitBtn"]', document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
        submitBtn.click();
    }
    // Your code here...
})();