jandan showpic

显示煎蛋正文图片

目前为 2019-12-26 提交的版本。查看 最新版本

// ==UserScript==
// @name         jandan showpic
// @namespace    jandan utils
// @version      0.1
// @description  显示煎蛋正文图片
// @author       vevan
// @match        http://jandan.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    if($("#content")){
        $("#content p").find("a[href$='.jpg'],a[href$='.jpeg'],a[href$='.png'],a[href$='gif']").each(function(idx,el){
            var src = $(this).attr("href")
            $(this).text("").append("<img src='"+src+"' style='max-height: 600px; display:block;' />")
        })
    }
})();

QingJ © 2025

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