pootz / keep2share auto get link when ready

// ==UserScript==
// @name        keep2share auto get link when ready
// @namespace   pootz
// @description after the 30 seconds countdown, auto get link when ready
// @include     http://k2s.cc/file/*
// @include     https://k2s.cc/file/*
// @include     http://keep2s.cc/file/*
// @include     https://keep2s.cc/file/*
// @include     http://keep2share.cc/file/*
// @include     https://keep2share.cc/file/*
// @include     https://new.keep2share.cc/file/*
// @include     http://new.keep2share.cc/file/*
// @version     1.1
// @history     1.1 update for new keep2share urls
// @require     https://code.jquery.com/jquery-2.1.1.min.js
// @require     https://gist.github.com/raw/2625891/waitForKeyElements.js
// @updateURL   https://openuserjs.org/meta/pootz/keep2share_auto_get_link_when_ready.meta.js
// @downloadURL https://openuserjs.org/install/pootz/keep2share_auto_get_link_when_ready.user.js
// @grant       GM_addStyle
// ==/UserScript==

waitForKeyElements( '#temp-link > a', getDownloadLink );

function getDownloadLink (jNode) {

    jNode[0].click();
    location.assign("ga('send', 'pageview', '/virtual/low-speed-download-c');");

}