Skip to content

Instantly share code, notes, and snippets.

@aoirint
Last active October 24, 2023 02:36
Show Gist options
  • Save aoirint/d481cf76233bda4e5ca203c343d0406f to your computer and use it in GitHub Desktop.
Save aoirint/d481cf76233bda4e5ca203c343d0406f to your computer and use it in GitHub Desktop.
ニコニコ動画のユーザー別生放送一覧(/live_programs)から動画ID・開始時間・終了時間・タイトルをTSVとして抽出するDevTools用スクリプト(2023-10-24版)
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