what ever happened to the list of recent visitors? why was it removed?
Offline
I don't know... if you want, i can make a userscript that gets it, and the newest members back. They're still in the source.
Offline
scimonster wrote:
I don't know... if you want, i can make a userscript that gets it, and the newest members back. They're still in the source.
I wonder if there're any purposes for that. New members tend to have no projects, so...
Offline
scimonster wrote:
I don't know... if you want, i can make a userscript that gets it, and the newest members back. They're still in the source.
// ==UserScript==
// @name Show recent visitors
// @namespace Scratch, Scimonster
// @description Show recent visitors (and newest members, optionally) on the homepage
// @include http://scratch.mit.edu/
// @version 1
// ==/UserScript==
var newest=false; //change "false" to "true" to show newest members!
var html = document.body.innerHTML.substring(document.body.innerHTML.indexOf('<!--\n <div id="RecentVisitors" class="sidecontainer">'),(document.body.innerHTML.indexOf('//-->',document.body.innerHTML.indexOf('<!--\n <div id="RecentVisitors" class="sidecontainer">'))+5));
document.body.innerHTML = document.body.innerHTML.replace(html, html.substring(5,html.length-5));
if(newest) {
html = document.body.innerHTML.substring(document.body.innerHTML.indexOf('<!--\n <div id="NewestMembers" class="sidecontainer">'),(document.body.innerHTML.indexOf('//-->',document.body.innerHTML.indexOf('<!--\n <div id="NewestMembers" class="sidecontainer">'))+5));
document.body.innerHTML = document.body.innerHTML.replace(html, html.substring(5,html.length-5));
}There's an option there that you can change before installing, whether or not to show the newest members.
Offline