NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name pc.sk Spoiler fix
// @namespace pretaktovanie.sk
// @license MIT
// @version 1.0
// @description Docasny fix pre nefungujuce linky v spoileri
// @author moped
// @match https://pretaktovanie.zoznam.sk/*
// @icon https://pretaktovanie.zoznam.sk/favicon.ico
// @run-at document-end
// @grant none
// ==/UserScript==
(function() {
'use strict';
jQuery('.signature a.postlink').unbind('click');
})();