Flickr Remove Greeting

By saipal Last update Feb 22, 2011 — Installed 273 times.

There are 3 previous versions of this script.

// ==UserScript==
// @name         Flickr Remove Greeting
// @version      2009-12-22
// @description  Removes the greeting and your avatar from the Flickr homepage
// @include      http://www.flickr.com/
// @namespace    http://userscripts.org/users/saipal
// @url          http://userscripts.org/scripts/source/64739.user.js
// ==/UserScript==

(function() {

var head = document.getElementsByTagName('head')[0], style = document.createElement('style'), 
	css = 'table.launchHead { display: none !important; } div#Main { padding-top: 2em !important; }';

if (!head) { return; }
style.type = 'text/css';
try { style.innerHTML = css; }
catch(x) { style.innerText = css; }
head.appendChild(style);

})();