blob: 7106d8276b2ad2ebe3a07b2154b7990bc708eedf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo ""
echo "The browser plugin is installed for Chromium and Firefox."
echo "For other browsers based on them, symlink the plugin to your local profile directory; i.e.,"
echo "for Google Chrome: "
echo "ln -s /etc/chromium/native-messaging-hosts/com.arrowdl.extension.json ~/.config/google-chrome/NativeMessagingHosts/"
echo "for Firefox based browsers: "
echo "ln -s /usr/lib/mozilla/native-messaging-hosts/com.arrowdl.extension.json ~/.<browser-name>/native-messaging-hosts/"
echo ""
}
post_upgrade() {
post_install
}
|