開いても空白のページが出るだけだ
ソースの中身は以下
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="./available_eids.js"></script>
<script type="text/javascript">
$(window).load(function() {
if (typeof available_eids == 'undefined') return;
$.getJSON('//sync.im-apps.net/imid/segment?token=JtshN-HUmx0xiIkb8Mzm7Q&callback=?').done(function(response) {
if (!response) return;
if (typeof response['imid'] == 'undefined') return;
if (typeof response['segment_eids'] == 'undefined') return;
var eids = response['segment_eids']
var intersection = eids.filter(function(element, index) {
if (available_eids.indexOf(element) == -1) return false;
return true;
});
var data = response['imid'] + ';' + intersection.join(',');
document.cookie = 'segments-100-2=1' + encodeURIComponent(data) + '; ' +
'max-age=86400; domain=kau.li;';
}).fail(function() {});
});
</script>
</head>
</html>