Skip to content

Instantly share code, notes, and snippets.

@bluefuton
Created July 2, 2013 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bluefuton/5907954 to your computer and use it in GitHub Desktop.
Save bluefuton/5907954 to your computer and use it in GitHub Desktop.
Hide Yahoo! toolbar on Flickr - Greasemonkey script
// ==UserScript==
// @name Hide Yahoo toolbar on Flickr
// @description Make the Yahoo 'eyebrow' toolbar vanish on Flickr
// @namespace http://bluefuton.com
// @version 0.1
// @author Chris Rosser
// @license MIT
// @released 2013-07-02
// @updated 2013-07-02
// @match *://flickr.com/*
// @match *://www.flickr.com/*
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
document.addEventListener('DOMContentLoaded', function (e) {
document.getElementById('eyebrow').style.display = 'none';
document.querySelector('body').classList.remove("with-eyebrow");
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment