Skip to content

Instantly share code, notes, and snippets.

@fffreire
fffreire / linkedin_script.js
Last active May 10, 2025 12:58
LinkedIn Automation Script
(function() {
async function runScript() {
function delay(ms) { return new Promise(res => setTimeout(res, ms)); }
// Random delay function between min and max milliseconds
function randomDelay(min, max) {
return delay(Math.floor(Math.random() * (max - min + 1)) + min);
}
// Get all image elements on the page