Greasy Fork

Greasy Fork is available in English.

速卖通上货beta

上货。

目前为 2021-06-04 提交的版本。查看 最新版本


    // ==UserScript==
    // @name         速卖通上货beta
    // @namespace    http://tampermonkey.net/
    // @version      0.23
    // @description  上货。
    // @author       wwp
    // @match        *://gsp.aliexpress.com/apps/product/publish*
    // @grant        none
    // ==/UserScript==
     
var _length = $("#struct-saleProp > div:nth-child(1) > div.next-col.next-col-20.sell-o-addon-content > div > div.info-content > div > div > div").children.length;
for (var i = 1; i < _length; i++) {
    console.log(i);
    $("#struct-saleProp > div:nth-child(1) > div.next-col.next-col-20.sell-o-addon-content > div > div.info-content > div > div > div > div:nth-child(" + i + ") > div > span.color-upload-wrap > button").click();
};