Greasy Fork is available in English.
fix img display
当前为
// ==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
}
}
})();