derpeer / Hide 9gag idle notification

// ==UserScript==
// @name        Hide 9gag idle notification
// @namespace   9gag
// @description Hides the annoying 9gag idle notification
// @match http://9gag.com/*
// @match https://9gag.com/*
// @include http://9gag.com/*
// @include https://9gag.com/*
// @version     1.0
// @grant       none
// ==/UserScript==

var element = document.getElementById("overlay-container");
element.parentNode.removeChild(element);