Hello,
I am trying to run the native messaging python app example on Chromium OS.
On Linux I am able to run the app by following the instructions given on the tutorial below:
However, on chromium os I had the following error : "Specified Native messaging host not found."
I try to install the json manifest file in different paths Iike :
~/.config/google-chrome/NativeMessagingHosts
~/.config/chromium/NativeMessagingHosts
/home/chronos/NativeMessagingHosts
/home/chronos/native-messaging-hosts
but unfortunately I got always the same error.
Here is my json file :
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
{
"name": "com.google.chrome.example.echo",
"description": "Chrome Native Messaging API Example Host",
"path": "/home/chronos/user/Downloads/host/native-messaging-example-host",
"type": "stdio",
"allowed_origins": [
"chrome-extension://knldjmfmopnpolahpmmgbagdohdnhkik/"
]
}
Can someone help with this problem.
Best Regards,
Saifeddine FERJANI