Last active
August 18, 2024 16:06
-
-
Save uahim/87744e50e5aa10489a114578781a06f6 to your computer and use it in GitHub Desktop.
zattoo generate free channels list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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