zattoo Deutschland Senderliste (nur kostenlose)
This file contains hidden or 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
| javascript:var vid = document.getElementById("player_video_node");vid.paused == false ? vid.pause() : vid.play();void(0); |
This file contains hidden or 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
| #EXTM3U | |
| #EXTINF:0,3Sat | |
| https://zdf-hls-18.akamaized.net/hls/live/2016501/dach/high/master.m3u8 | |
| #EXTINF:0,ARD | |
| https://daserste-live.ard-mcdn.de/daserste/live/hls/de/master.m3u8 | |
| #EXTINF:0,ARD_Alpha | |
| https://mcdn.br.de/br/fs/ard_alpha/hls/de/master.m3u8 | |
| #EXTINF:0,ARTE | |
| https://artesimulcast.akamaized.net/hls/live/2030993/artelive_de/index.m3u8 | |
| #EXTINF:0,BR |
This file contains hidden or 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
| var preparing = new Array(); | |
| var myindex = 0; | |
| for (var i = 0, l = allkeys; i < l; ++i) { | |
| if (Object.values(schemaObj.props["apolloState"])[i].__typename == "CmsMovie") { | |
| if (Object.values(schemaObj.props["apolloState"])[i].externalIdentifier) { | |
| var slug = Object.values(schemaObj.props["apolloState"])[i].slug; | |
| if (slug) { |
This file contains hidden or 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
| javascript: | |
| var rows = document.getElementsByTagName("td").length; | |
| var allrows = "", temprowa = "", temprowb = ""; | |
| for (var i = 0, l = rows; i < l; ++i) { | |
| temprowa = document.getElementsByTagName("td")[i].getAttribute("data-cm-link"); | |
| if ((temprowa != null) && (temprowa != temprowb)) { | |
| allrows += temprowa + "\n"; |
This file contains hidden or 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
| javascript:var scriptEl = document.getElementById("schema-org-graph").innerText;var schemaObj = JSON.parse(scriptEl); var sentences = schemaObj["@graph"][3].articleBody.split(". "); var formattedtext = ""; var skips = 0; for (var i = 0; i < sentences.length; i++) { if (i === skips + 5) { var breaks = "<br /><br />"; skips += 5; } else { var breaks = ""; } formattedtext += sentences[i] + ". " + breaks; } var intro = document.getElementsByClassName("dm-article__intro")[0].innerHTML; document.getElementsByClassName("dm-article-content-width")[0].innerHTML = "<strong>" + intro + "</strong><br /><br /><br />" + formattedtext + "<br /><br />";void(0); |
This file contains hidden or 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
| var artistname = "Brass Against"; | |
| var output = ""; | |
| function fancyTimeFormat(duration) { | |
| // Hours, minutes and seconds | |
| const hrs = ~~(duration / 3600); | |
| const mins = ~~((duration % 3600) / 60); | |
| const secs = ~~duration % 60; | |
| // Output like "1:01" or "4:03:59" or "123:03:59" |
This file contains hidden or 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
| // ==UserScript== | |
| // @name imdb soundtrack | |
| // @namespace imdb | |
| // @description fixes imdb 2023 redesign soundtrack page bullshit | |
| // @include https://www.imdb.com/title/tt*/soundtrack* | |
| // @version 0.6 | |
| // @grant none | |
| // ==/UserScript== | |
| var repx = new RegExp("(Produced|Performed|Written|Music|Lyrics|Courtesy) (by|of|and).*", "gi"); |
This file contains hidden or 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
| #!/bin/bash | |
| # usage: | |
| # yt2cue.sh source_file "artist" "album title" | |
| # set to 1 to debug :=) | |
| debug=0 | |
| i="0" | |
| > yt2cue.cue |
This file contains hidden or 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
| // stream url to watch in VLC or to feed into ffmpeg, youtube-dl or its various forks | |
| // displayed line-by-line for better readability | |
| javascript: | |
| var id = location.href.split("/"); | |
| var urlp = "https://dms.redbull.tv/v5/destination/stv/"; | |
| var urls = "/personal_computer/chrome/de/de_DE/playlist.m3u8"; | |
| var properid = id[id.length - 2].toUpperCase(); | |
| if (properid.match(/^AA/) != null) { | |
| var filmtitle = document.querySelector('meta[property="og:title"]').content; |