MartynMage / Show Mature Option on Imgur

// ==UserScript==
// @name         Show Mature Option on Imgur
// @namespace    IC Change
// @version      0.1
// @description  Show Mature Option
// @author       MartynMage
// @include      http://imgur.com/gallery/*
// @include      https://imgur.com/gallery/*
// @grant        Nothing!
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('.options .nodisplay {display: block !important;}');