得物图片获取

得物图片快捷下载

目前为 2022-03-18 提交的版本。查看 最新版本

// ==UserScript==
// @name         得物图片获取
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  得物图片快捷下载
// @require      https://cdn.staticfile.org/jquery/3.4.1/jquery.min.js
// @author       烟花小神
// @license      MIT
// @match        https://m.poizon.com/**
// @icon         https://www.google.com/s2/favicons?sz=64&domain=poizon.com
// ==/UserScript==

(function () {
    'use strict';
    $('.UserInfoCard_follow-btn__IhvwM').html("下载");
    $('.UserInfoCard_follow-btn__IhvwM')[0].onclick = function () {
        setTimeout(function () {
            $('.QrcodeModal_box__2CQ3_').css({ "width": "auto", "padding-left": "8px" })
            $('.QrcodeModal_qrcode__3Yh2z').remove();
            $(".QrcodeModal_desc__2X55Q").html("");
            var h = '<div class="swiper-wrapper" style="transform: translate3d(0px, 0px, 0px);">'
            $(".PhotoSwiper_sub-swiper__2DawT .img-box-inner").each(function () {
                var srcImg = $(this).attr("src");
                srcImg = srcImg.replace(/w_.*/, 'w_1080');
                h += `<div style="margin-right: 8px;"><a target="_blank" href="${srcImg}"><img draggable="false" src="${srcImg}" style="opacity: 1;width: 60px;height: 60px;"></a></div>`
            });
            $(".QrcodeModal_desc__2X55Q").html(h + '</div>');
        }, 10)
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址