// ==UserScript== // @name 新浪博客图片取消延迟加载 // @namespace blog.sina.com.cn // @author 喵拉布丁 // @description 用于取消新浪博客图片的延迟加载 // @include http://blog.sina.com.cn/s/blog_*.html // @version 1.0 // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== for(var i in document.images) { var realSrc = document.images[i].getAttribute('real_src'); if (realSrc) { document.images[i].src = realSrc; } }