Skip to content

Commit

Permalink
updating windows ReadMe. Adding uninstall.sh to Linux and Mac builds
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-portmen committed Mar 8, 2017
1 parent 5a9f585 commit 5b5e14a
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 10 deletions.
1 change: 1 addition & 0 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ exports.ids = {
'{0ff128a1-c286-4e73-bffa-9ae879b244d5}', // Media Converter
'{65b77238-bb05-470a-a445-ec0efe1d66c4}', // External Application Button
'{086f665e-6a55-4107-9147-f9a14e72b137}', // Open in Chrome
'd2e4b09019f93cfdde2311052c76f5639fd0dcf8@temporary-addon', // Open in Chrome
]
};
2 changes: 1 addition & 1 deletion host.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var https = lazyRequire('./follow-redirects').https;
var server, files = [];

var config = {
version: '0.2.7'
version: '0.2.8'
};
// closing node when parent process is killed
process.stdin.resume();
Expand Down
8 changes: 8 additions & 0 deletions linux/uninstall.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash
#
rm ~/.config/google-chrome/NativeMessagingHosts/com.add0n.node.json
rm ~/.config/chromium/NativeMessagingHosts/com.add0n.node.json
rm ~/.mozilla/native-messaging-hosts/com.add0n.node.json
rm -r ~/com.add0n.node

echo ">>> Native Client is removed <<<".
8 changes: 8 additions & 0 deletions mac/uninstall.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash
#
rm ~/Library/Application\ Support/Google/Chrome/NativeMessagingHosts/com.add0n.node.json
rm ~/Library/Application\ Support/Chromium/NativeMessagingHosts/com.add0n.node.json
rm ~/Library/Application\ Support/Mozilla/NativeMessagingHosts/com.add0n.node.json
rm -r ~/com.add0n.node

echo ">>> Native Client is removed <<<".
28 changes: 19 additions & 9 deletions windows/ReadMe.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
To install the native application
1. Right-click on "install.bat" and use "Run as Administrator"
To install the native application:

1. Extract this downloaded ZIP file in a local directory.

2. Right-click on "install.bat" and use "Run as Administrator".

3. Wait for the script to display the successful message.

To uninstall the native application:

1. Right-click on "uninstall.bat" and use "Run as Administrator".

2. Wait for the script to display the successful message.


Note: the script needs administrator permission to copy files successfully.

To uninstall the native application
1. Right-click on "uninstall.bat" and use "Run as Administrator"
2. Wait for the script to display the successful message.

Note: The script needs administrator permission to copy files successfully.



Installation Guide:
https://www.youtube.com/watch?v=18jAqTXBiZA

https://www.youtube.com/watch?v=18jAqTXBiZA

0 comments on commit 5b5e14a

Please sign in to comment.