Google-Allo-For-Desktop

A "native-like" OS X, Windows, & Linux desktop app for Google Allo

Stars
118
Forks
10
Open issues
6
Closed issues
12
Last release
almost 6 years ago
Last commit
over 5 years ago
Watchers
118
Total releases
4
Total commits
25
Open PRs
0
Closed PRs
4
Repo URL
Platform
Mac
License
Category
Usecase
Chat
Offers premium version?
NO
Proprietary?
NO
About

DEPRECATED With Google's latest announcement that allo is shutting down in March, this project will also be ending and moving to "archive" mode. I would like to thank everyone for the downloads and support and for helping to validate a user need. You can check out the Android Messages for Desktop project instead. Google Allo for Desktop

A desktop app for Google Allo. This desktop app is supported by both Nativefier and Electron version ^1.7.6.

The Mac, Windows, and Linux apps can be downloaded from the latest release. The latest release includes both a light and dark theme version of the app.

Purpose

The purpose of this project is to build dedicated desktop apps for Google Allo and leverage your OS's built in notification system.

This desktop app and project is not an official product of Google and I am not affiliated with Google in any way. You can read more about the purpose of this project here: https://www.caffeinecoding.com/validating-a-customer-need-with-rapid-experimentation/

Rebuilding the app

Requires nodejs

Nativefier

Install nativefier and make sure to have your optional dependencies set up to replace the icon.

npm install -g nativefier
Mac
nativefier --platform "mac" --icon allo-logo.png --name "Google Allo" "https://allo.google.com/web" --inject dark-theme.css --honest --disable-dev-tools --single-instance --tray
Windows
nativefier --platform "windows" --icon allo-logo.ico --name "Google Allo" "https://allo.google.com/web" --inject dark-theme.css --honest --disable-dev-tools --single-instance --tray
Linux
nativefier --platform "linux" --icon allo-logo.png --name "Google Allo" "https://allo.google.com/web" --inject dark-theme.css --honest --disable-dev-tools --single-instance
Notifications on Windows

To receive notifications on Windows, you'll need to do the following:

  1. Add a shortcut of this app to the Start Menu folder
  2. In the "Windows Settings" app, check if the setting for "Show notifications in action center" is on (It might be off by default)

For developers

These instructions were the result of an active issue with electron + Windows 8/10 and is resolved by setting app.setAppUserModelId(process.execPath) within resources/app/lib/main.js during electron initialization:

Example:

const {app, shell} = electron;

app.setAppUserModelId(process.execPath); // Include this line

function getFilenameFromMime(name, mime) { const exts = extName.mime(mime); ...

Alternative Projects

Subscribe to Open Source Businees Newsletter

Twice a month we will interview people behind open source businesses. We will talk about how they are building a business on top of open source projects.

We'll never share your email with anyone else.