Skip to content

Instantly share code, notes, and snippets.

View Khanaru220's full-sized avatar
🌐
Translating JS (57.98%) to TS (5.81%)

Khanaru220 Khanaru220

🌐
Translating JS (57.98%) to TS (5.81%)
View GitHub Profile
@Khanaru220
Khanaru220 / gist:e3fd751a64e41993209c146ebe807d93
Last active January 19, 2024 06:43
To scrape data (email, contacts, channel id) from Youtube to Airtable
javascript: (function () {
function simulateClick(selector) {
var element = document.querySelector(selector);
if (element) {
element.click();
}
}
simulateClick('#channel-tagline ytd-channel-tagline-renderer a');
const scrapeData = () => {