Facebook
From Soft Lechwe, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 254
  1. javascript: void(function() {
  2.     if (document.location.href.indexOf('player.pl/seriale') > -1) {
  3.         var link = window.location.href;
  4.         var x = link.split(",");
  5.         document.location.href = 'https://player.pl/api/?platform=ConnectedTV&terminal=Panasonic&format=json&authKey=064fda5ab26dc1dd936f5c6e84b7d3c2&v=3.1&m=getItem&id=' + x[x.length - 1];
  6.     }
  7.     if (document.location.href.indexOf('https://player.pl/api/?platform=ConnectedTV&terminal=Panasonic&format=json&authKey=064fda5ab26dc1dd936f5c6e84b7d3c2&v=3.1&m=getItem&id=') > -1) {
  8.    
  9.         var req = new XMLHttpRequest();
  10.         req.responseType = 'json';
  11.         req.open('GET', window.location.href, true);
  12.         req.onload = function() {
  13.             var j = req.response;
  14.             alert(j.item.videos.main.video_content[2].url);
  15.         };
  16.         req.send(null);
  17.         }
  18. })()