How To Create Custom Ubuntu Web Link App

Turn any web page into an Ubuntu application and prevent the web owner from tracking you around the web.

Say you would like to have WhatsApp on Ubuntu as a sandboxed application, but you cannot find any package for that. WhatsApp has a web page, but how to make sure that the page opens as separate application and its provider cannot track you on other pages or hack access to your login or history?

Two step solution below uses Chromium browser.

Note: If you don’t need sandbox protection you can simply click in Chromium: More tools -> Add to desktop. (Thanks Hacker News suggestor.)

Results

Search
Search
Taskbar
Taskbar

Instructions

  • Create a desktop file whatsapp.desktop containing following:
    [Desktop Entry]
    Version=1.0
    Type=Application
    Name=WhatsApp
    GenericName=WhatsApp
    #Icon=/usr/share/icons/hicolor/scalable/whatsapp.svg
    Exec=chromium-browser --class whatsapp -user-data-dir=".config/whatsapp" --app="https://web.whatsapp.com"
    Terminal=false
    
  • Install desktop file executing:
    sudo desktop-file-install whatsapp.desktop 
    

Note 1: You can also install the desktop file without admin rights for current user only: cp whatsapp.desktop ~/.local/share/applications/.

Note 2: Do not use command above unchanged in commandline. It relies on being executed in home directory to store its profile in .config. I found no easy way to add $HOME reference into a desktop file.

Custom Icon

Download and uncomment the Icon line to have icon displayed in Ubuntu search (launcher). However, Chrome will override Taskbar icon with the page icon upon load. This lowers your Taskbar icon resolution, but on the other hand simplifies the process.

Custom Taskbar as well as search (launcher) icons are supported on Firefox.

Firefox Support

Firefox has advantage in that it doesn’t override your custom icon in the Taskbar, however requires manual profile creation step and manual removal of address bar.

Other Suggested Apps

  • Google Calendar
  • Gmail
  • Youtube
  • Facebook
  • Google Tasks

You can speed up the web link app creation using following script. It also creates a command into $HOME/bin such that you can add that app into startup. It takes two arguments:

  • url: Url of the app starting with https or http.
  • name: Name of the app used for search and commandline.
#!/bin/sh -xue

url="$1";
if [ "$#" = "1" ]; then
	name="$(echo "$url" |sed -e 's|https://||;s|http://||;s|\.[^.]\+$||;')";
elif [ "$#" = "2" ]; then
	name="$2";
else
	echo 'Too many arguments. Usage: url [name]';
	exit 1;
fi

command="$HOME/bin/$name";
cat - > "$command" <<END
#!/bin/sh -ue
chromium-browser --class "$name" -user-data-dir="$HOME/.config/$name" --app="$url";
END
chmod u+x "$command";

desktopFile="$HOME/.local/share/applications/$name.desktop";

cat - > "$desktopFile" <<END
[Desktop Entry]
Version=1.0
Type=Application
Name=$name
GenericName=$name
#Icon="$HOME/.local/share/icons/$name.svg"
Exec="$command"
Terminal=false
END

References

Created on 25 Feb 2018.
Thank you










About Vaclav Kosar How many days left in this quarter? Twitter Bullet Points to Copy & Paste Averaging Stopwatch Privacy Policy
Copyright © Vaclav Kosar. All rights reserved. Not investment, financial, medical, or any other advice. No guarantee of information accuracy.