Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4981)

Unified Diff: chrome/common/extensions/docs/examples/api/nativeMessaging/README.txt

Issue 768373004: Improve native messaging documentation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments #4 + fix Python script for Windows Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/examples/api/nativeMessaging/README.txt
diff --git a/chrome/common/extensions/docs/examples/api/nativeMessaging/README.txt b/chrome/common/extensions/docs/examples/api/nativeMessaging/README.txt
index 4e9e68f90aa6de7aae57389ed2ae196eb56ed028..c0269460cc9955b04bd94668430b29e633f177f2 100644
--- a/chrome/common/extensions/docs/examples/api/nativeMessaging/README.txt
+++ b/chrome/common/extensions/docs/examples/api/nativeMessaging/README.txt
@@ -7,13 +7,15 @@ host from the host directory.
To install the host:
On Windows:
- Add registry key
- HKEY_LOCAL_MACHINE\SOFTWARE\Google\Chrome\NativeMessagingHosts\com.google.chrome.example.echo
- or
+ Run install_host.bat script in the host directory.
+ This script installs the native messaging host for the current user, by
+ creating a registry key
HKEY_CURRENT_USER\SOFTWARE\Google\Chrome\NativeMessagingHosts\com.google.chrome.example.echo
- and set its default value to the full path to
- host\com.google.chrome.example.echo-win.json . Note that you need to have
- python installed.
+ and setting its default value to the full path to
+ host\com.google.chrome.example.echo-win.json .
+ If you want to install the native messaging host for all users, change HKCU to
+ HKLM.
+ Note that you need to have python installed.
On Mac and Linux:
Run install_host.sh script in the host directory:

Powered by Google App Engine
This is Rietveld 408576698