Verze 2.0

javascript: if (
  location.hostname == "prehrajto.cz" ||
  location.hostname == "prehraj.to"
) {
  const a = document.createElement("a");
  a.setAttribute(
    "href",
    document.querySelector(".vjs-tech").getAttribute("src")
  );
  a.textContent = "play";
  document.body.appendChild(a);
  a.click();
} else if (confirm("Přesměrovat na Přehraj.to?")) {
  window.location = "http://prehrajto.cz";
}

Verze 1.0

javascript: if (
  location.hostname == "prehrajto.cz" ||
  location.hostname == "prehraj.to"
) {
  var a = document.createElement("a");
  if (confirm("OK = Stáhnout\nZrušit = Sledovat nyní")) {
    a.setAttribute(
      "download",
      document.querySelector(".video-detail-title").textContent + ".mp4"
    );
  }
  a.setAttribute(
    "href",
    (a0 = document.querySelector(".jw-video"))
      ? a0.getAttribute("src")
      : document
          .querySelector('.video-wrap meta[itemprop="contentUrl"]')
          .getAttribute("content")
  );
  a.textContent = "download";
  document.body.appendChild(a);
  a.click();
} else if (confirm("Přesměrovat na Přehraj.to?")) {
  window.location = "http://prehrajto.cz";
}