Skip to content

Instantly share code, notes, and snippets.

View alessandrofalls's full-sized avatar
🏠
Working from home

Alessandro Falls alessandrofalls

🏠
Working from home
View GitHub Profile
@ilokhov
ilokhov / export-sync-bookmarks.js
Last active September 30, 2024 11:44
Node.js script for exporting and synchronising bookmarks from Google Chrome
const fs = require("fs");
const path = require("path");
function newItem(name, url) {
return { name, url };
}
const bookmarkPath = path.join(
process.env.HOME,
"/Library/Application Support/Google/Chrome/Default/Bookmarks"