BaiduPanAutoNextBtn

百度网盘自动下一步按钮

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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