NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Spaargids.be loan offers // @namespace http://tampermonkey.net/ // @version 0.1 // @description Instantly show loan offers instead of receiving them by email // @author Tim Klingeleers // @match https://www.spaargids.be/* // @grant none // @license MIT // @copyright 2017, Mardaneus86 (https://openuserjs.org/users/Mardaneus86) // ==/UserScript== // ==OpenUserJS== // @author Mardaneus86 // ==/OpenUserJS== (function () { 'use strict'; getLink = function (id) { window.open("https://www.spaargids.be/sparen/index.php?option=com_ajax&view=loanemail&method=post&task=geturl&id=" + id); }; })();