Playwright script download Google keep notes
const { chromium } = require(‘playwright’);const MarkdownIt = require(‘markdown-it’);const fs = require(‘fs’);const email = ‘<your_google_account_email>‘;const password = ‘<your_google_account_password>’;(async () ⇒ { const browser = await chromium.launch(); const context = await browser.newContext(); const page = await context.newPage(); // Login to Google account await…