var url="https://www.jpopsingles.eu";var error=0;if(selector===undefined){var selector="a";}if(url===null){console.error('Please set the url to the api of the url shortener script.');error=1;}if(key===undefined){console.error('Please set your key.');error=1;}if(error==0){var elements=document.querySelectorAll(selector);Array.prototype.forEach.call(elements, function(el){var skip=0;var apiurl='';if(typeof exclude!=='undefined'){if(exclude.indexOf(getHost(el.getAttribute('href'))) > -1) skip=1;}if(typeof include!=='undefined'){skip=1;if(include.indexOf(getHost(el.getAttribute('href'))) > -1) skip=0;}if(skip===0){apiurl=url+'/fullpage?key='+key+'&url='+encodeURI(el.getAttribute('href'));if(typeof domain!=='undefined'){apiurl=apiurl +'&domain='+domain;}sendRequest(apiurl, function(response){if(response.error=='0'){el.setAttribute('href',response.short);}else{console.error(response.msg);}});}});}function sendRequest(url, callback){var callbackName='PUS_' + Math.round(100000 * Math.random());window[callbackName]=function(data){delete window[callbackName];document.body.removeChild(script);callback(data);};var script=document.createElement('script');script.src=url + (url.indexOf('?') >=0 ? '&':'?') + 'callback=' + callbackName;document.body.appendChild(script);}function getHost(url){var hostname;if(url.indexOf("://") > -1){hostname=url.split('/')[2];}else{hostname=url.split('/')[0];}hostname=hostname.split(':')[0];hostname=hostname.split('?')[0];return hostname.replace("www.","");};