// ==UserScript== // @name Renren Xu1s // @namespace https://malash.me/ // @author Malash // @icon http://a.xnimg.cn/favicon.ico // @version 1.0.0 // @description Renren续一秒——人人被屏蔽内容查看器 // @homepageURL https://github.com/malash/renren-xu1s // @include http://www.renren.com/* // @grant none // @downloadURL none // ==/UserScript== (function ($, window) { $('body').append(''); setInterval(function(){ $('.share-photo img').each(function() { if ($(this).data('xu1s')) { return; } console.log('new', this); $(this).data('xu1s', 'xu1s'); $($(this).parent().parent()).children('.source-desc').append('') }); }, 1000); })(jQuery, window);