diff --git a/mac/app/install.js b/mac/app/install.js index 9640525..780ef96 100644 --- a/mac/app/install.js +++ b/mac/app/install.js @@ -119,6 +119,8 @@ async function chrome() { await run('Library/Application Support/Google/Chrome/NativeMessagingHosts'); console.error(' -> Chrome Browser is supported'); + await run('Library/Application Support/Google/Chrome Dev/NativeMessagingHosts'); + console.error(' -> Chrome Dev Browser is supported'); await run('Library/Application Support/Chromium/NativeMessagingHosts'); console.error(' -> Chromium Browser is supported'); await run('Library/Application Support/Vivaldi/NativeMessagingHosts'); diff --git a/mac/uninstall.sh b/mac/uninstall.sh index 0ceaef7..86fee5f 100755 --- a/mac/uninstall.sh +++ b/mac/uninstall.sh @@ -24,6 +24,8 @@ echo echo " -> Removing manifest file for Google Chrome" rm -f ~/Library/Application\ Support/Google/Chrome/NativeMessagingHosts/${id}.json +echo " -> Removing manifest file for Google Chrome Dev" +rm -f ~/Library/Application\ Support/Google/Chrome\ Dev/NativeMessagingHosts/${id}.json echo " -> Removing manifest file for Chromium" rm -f ~/Library/Application\ Support/Chromium/NativeMessagingHosts/${id}.json echo " -> Removing manifest file for Vivaldi"