修复游侠图片不展示问题

fix img display

目前为 2024-01-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         修复游侠图片不展示问题
// @namespace    http://tampermonkey.net/
// @version      2024-01-08
// @description  fix img display
// @author       Xuanqing Lu
// @match        https://down.ali213.net/pcgame/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=ali213.net
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    const nodes = document.querySelectorAll('.content-a>img')
    for(const node of nodes){
        const url = node.getAttribute('data-original')
        if(url){
            node.src=url
        }
    }
})();

QingJ © 2025

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