import "@johnlindquist/kit"
let js = `
Array.from(document.querySelectorAll('.dss-subtitle-renderer-line')).map(el => el.innerText)
`
let value = await applescript(`
tell application "Google Chrome" to tell window 1
set str to execute active tab javascript "${js}"
return str
end tell
`)
await div(md(`## ${value}`))