Kinja fixer-upper

Fix annoyances

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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);