1#!/bin/sh
2# Copyright 2013 The Chromium Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6set -e
7
8if [ $(uname -s) == 'Darwin' ]; then
9  if [ "$(whoami)" == "root" ]; then
10    TARGET_DIR="/Library/Google/Chrome/NativeMessagingHosts"
11  else
12    TARGET_DIR=\
13        "$HOME/Library/Application Support/Google/Chrome/NativeMessagingHosts"
14  fi
15else
16  if [ "$(whoami)" == "root" ]; then
17    TARGET_DIR="/etc/opt/chrome/native-messaging-hosts"
18  else
19    TARGET_DIR='$HOME/.config/google-chrome/NativeMessagingHosts'
20  fi
21fi
22
23HOST_NAME=com.google.chrome.example.echo
24rm $TARGET_DIR/com.google.chrome.example.echo.json
25echo Native messaging host $HOST_NAME has been uninstalled.
26