修复游侠图片不展示问题

fix img display

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

  1. // ==UserScript==
  2. // @name 修复游侠图片不展示问题
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.2
  5. // @description fix img display
  6. // @author Xuanqing Lu
  7. // @match https://down.ali213.net/pcgame/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=ali213.net
  9. // @grant none
  10. // @license MIT
  11. // @supportURL https://github.com/LuXuanqing/fix-ali213/tree/main
  12. // ==/UserScript==
  13.  
  14. (function () {
  15. 'use strict';
  16. const nodes = document.querySelectorAll('.content-a>img')
  17. for (const node of nodes) {
  18. const url = node.getAttribute('data-original')
  19. if (url) {
  20. node.src = url
  21. }
  22. }
  23. })();

QingJ © 2025

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