Created
January 15, 2022 08:20
-
-
Save naosim/7ec1b74f0fc2e5183ef2103be0650f69 to your computer and use it in GitHub Desktop.
TechPlayから勉強会の情報を抜き取る
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
(function() { | |
const obj = { | |
title: document.querySelector("h1.eventDetail-heading").innerText, | |
date: document.querySelector("time.eventAside-day").innerText, | |
time: document.querySelector("div.eventAside-time").innerText.split("\n").join(""), | |
link: location.href | |
} | |
const text = `${obj.title}\n${obj.date}${obj.time}\n${obj.link}`; | |
console.log(text); | |
prompt("リンク", text); | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment