Mardaneus86 / Spaargids.be loan offers

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