Skip to content

Instantly share code, notes, and snippets.

@uahim
Last active August 18, 2024 16:06
Show Gist options
  • Save uahim/87744e50e5aa10489a114578781a06f6 to your computer and use it in GitHub Desktop.
Save uahim/87744e50e5aa10489a114578781a06f6 to your computer and use it in GitHub Desktop.
zattoo generate free channels list
// to use in console
var channels = "";
for (var i = 0, l = document.getElementsByTagName("section").length; i < l; ++i) {
var state = window.getComputedStyle(document.getElementsByTagName("section")[i], null).getPropertyValue('visibility');
if (state != "hidden") {
if (document.getElementsByTagName("section")[i].getElementsByTagName("span")[1]) {
if (document.getElementsByTagName("section")[i].getElementsByTagName("span")[1].getAttribute("data-soul") == "RIBBON_LOCKED") {
continue;
}
}
var link = document.getElementsByTagName("section")[i].getElementsByClassName("LuaD8 tfGlV f376q xrBam")[0].getAttribute("data-cid");
var name = document.getElementsByTagName("section")[i].getElementsByClassName("LuaD8 tfGlV f376q xrBam")[0].getElementsByTagName("img")[0].alt;
channels += '<a href="https://zattoo.com/live/' + link + '">' + name.replace(" HD", "") + '</a><br />\n';
}
}
copy(channels)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment