Kinja fixer-upper

Fix annoyances

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Kinja fixer-upper
// @namespace   V@no
// @description Fix annoyances
// @include     http://*deadspin.com/*
// @include     http://*gawker.com/*
// @include     http://*gizmodo.com/*
// @include     http://*io9.com/*
// @include     http://*jalopnik.com/*
// @include     http://*jezebel.com/*
// @include     http://*kotaku.com/*
// @include     http://*lifehacker.com/*
// @include     https://*deadspin.com/*
// @include     https://*gawker.com/*
// @include     https://*gizmodo.com/*
// @include     https://*io9.com/*
// @include     https://*jalopnik.com/*
// @include     https://*jezebel.com/*
// @include     https://*kotaku.com/*
// @include     https://*lifehacker.com/*
// @version     1.0
// @grant       none
// ==/UserScript==


var log = console.log;
document.addEventListener("DOMContentLoaded", function()
{
	(function loop()
	{
		if (typeof($) == "undefined")
			return setTimeout(loop, 0);

		var div = $(".item__content,.js_item-content,.post-wrapper,.js_post-wrapper,.streamshare,.postlist__item,.js_post_item,.status-published,.post-item-frontpage"),
				off = (function off()
				{
					div.off("click");
					return off;
				})();

		setTimeout(off, 0);
	})();
}, false);