#!/usr/bin/env sh

wpintel='https://chrome.google.com/webstore/detail/wpintel-wordpress-vulnera/mkhmkjcbidkifopffebieonhhkondlfe'

if command -v chromium > /dev/null; then
  chromium --app="$wpintel" &
else
  echo "chromium is not installed, leaving."
fi
