Last active
October 24, 2023 02:36
-
-
Save aoirint/d481cf76233bda4e5ca203c343d0406f to your computer and use it in GitHub Desktop.
ニコニコ動画のユーザー別生放送一覧(/live_programs)から動画ID・開始時間・終了時間・タイトルをTSVとして抽出するDevTools用スクリプト(2023-10-24版)
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
s = "" | |
for (const programCardElement of [...document.querySelectorAll(".program-card")]) { | |
// ライブ公開を除外 | |
if (programCardElement.querySelector(".video-premiere-label") != null) continue; | |
s += [ | |
new URL(programCardElement.querySelector(".program-title a").href).pathname.slice(7), | |
programCardElement.querySelector(".start-at").getAttribute("datetime").replace(" ", "T") + "+09:00", | |
programCardElement.querySelector(".end-at").getAttribute("datetime").replace(" ", "T") + "+09:00", | |
programCardElement.querySelector(".program-title").innerText, | |
].join("\t") + "\n" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment