Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding a system tray icon to a Chrome App like the Google Hangouts app does? [duplicate]

I'm trying to create a Chrome package App with an icon in the system menu bar as explain here : https://docs.google.com/document/d/1QhhfR33Y28Yqnnoa_Sl3fnZK_mKtwt4dZe6kNyJ_MjU/edit ,

The Google Hangout App can implement this feature (it's not exactly the same behavior) but I don't find any good documentation to do the same.

In the manifest page of Google Packaged App, we can see the field "system_indicator". Is it what I'm looking for ? When I try to set this field to an url of an icon, Chrome return me this error :

'system_indicator' requires Google Chrome dev channel or newer, but this is the beta channel.

I've also found this old page from the chromium project : http://www.chromium.org/developers/design-documents/extensions/proposed-changes/apis-under-development/system-indicator-api

So my question is simple : can I build this feature for my app ? And if yes, how ?

Thank you for your help ! :-)

like image 785
Guillaume Wuip Avatar asked Nov 30 '13 22:11

Guillaume Wuip


People also ask

How do I stop Chrome from duplicating Taskbar shortcuts?

Unpin the second Google Chrome To fix the Google Chrome taskbar duplicate issue, open Google Chrome then right-click the icon that is not active. Select Unpin from taskbar. Right-click on the other icon and select Pin to taskbar.

How do I add Chrome to my system tray?

Right-click on the desktop and select 'New'. Then, click on 'Shortcut' from the options. It will open a window to create the shortcut. Click on the 'Browse' button and select chrome.exe from the chrome installation folder in the 'Program Files' folder of your Windows installation drive.

Why are there two Chrome icon on my phone?

Messages uses Chrome to preview and display web content might be one reason. It's an error of Dual Messenger. Turn that fuction off at the Settings and restart your phone.

How do I fix the Chrome Taskbar icon?

Step 1: Right-click on the problematic Chrome icon on the desktop and go to Properties. Step 2: Click on the Change Icon button under the Shortcut tab. Step 3: Select a new icon from the Change icon window and hit Ok followed by Apply.


2 Answers

The system_indicator was an experimental API partly introduced in the dev channel, but was later removed, as the Chrome/Chromium team deemed it too costly to maintain across all platforms. The entire history of this API is available at issue 142450.

In other words, as for now, there is no API for a system tray icon.

like image 116
Denilson Sá Maia Avatar answered Sep 28 '22 14:09

Denilson Sá Maia


The hangouts app uses a "panel" type window to achieve its behaviour, see Abraham's answer on How to build an chrome extension like Google Hangouts. Essentially, when you open a window, add type="panel" parameter:

chrome.windows.create({ url: 'https://mobile.twitter.com/', type: 'panel' });

Regarding the error you mentioned, this is because you are using the Beta Chrome build, and it has realised that the feature is not available in this version, and is advising you that you need a dev channel or trunk release. Find out more about Chrome release channels here: http://www.chromium.org/getting-involved/dev-channel

like image 31
Chris Alexander Avatar answered Sep 28 '22 14:09

Chris Alexander