Old Reddit Image Loader

add images in comments

// ==UserScript==
// @name Old Reddit Image Loader
// @namespace https://rant.li/boson
// @match       *://*.reddit.com/*
// @grant none
// @version 1.1
// @author Boson
// @description add images in comments
// @license      GNU AGPLv3
// ==/UserScript==
[...document.querySelectorAll('a')].forEach((element) => {
  if(element.innerHTML == '<image>'){
    const my_img = document.createElement('img');
    my_img.src = element.href;
    my_img.style = 'max-width:240px;width:100%';
    element.replaceWith(my_img);
  }
});

QingJ © 2025

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