Skip to content

Instantly share code, notes, and snippets.

@vgrsec
vgrsec / chromium_update.sh
Last active July 10, 2023 03:37 — forked from andrepearce/chromium_update.sh
Auto Update Chromium on OSX
#!/bin/sh -ex
# Chromium update script
# - forked from Superbil/chromium_update.sh
# - forked from andrepearce/chromium_update.sh
# - Updated by vgrsec
# - Updated to use curl from wget due to built in curl support in 13.4
# - Updated to download ARM build
OS=mac_arm
DL_URL=https://download-chromium.appspot.com/dl/${OS}?type=snapshots
@vgrsec
vgrsec / MacOS Chrome Incognito
Last active September 20, 2018 17:54
This will launch Google Chrome as an incognito window with a separate data directory each time.
do shell script "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --incognito --no-first-run --user-data-dir=/Users/$USER/Desktop/ChromeIncogneto/$RANDOM > /dev/null 2>&1 &"