Greasy Fork is available in English.
turns everyone's avatars into robespierre
当前为
// ==UserScript==
// @name everyone is robespierre
// @namespace Violentmonkey Scripts
// @author ghostplantss
// @grant none
// @match *://www.tumblr.com/*
// @description turns everyone's avatars into robespierre
// @version 1.0
// @require https://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
//
//
(
function scroll (f) {
var count = 0;
window.addEventListener("scroll", ( //every time you scroll
function fun() //it runs this function!
{
$('.post_avatar_link').each(function(i) {
this.style.backgroundImage="url('http://1.bp.blogspot.com/-4hQikqwr-Z8/Ves0Kr8f6TI/AAAAAAAAB1A/MB9k7bzWDbc/s1600/robespierre.jpg')";
});
}), false);
}
)(window.jQuery);