Native Messaging API, has API become obsolete?
We are trying to build a program that would be able to communicate with extensions on a remote computer without having to install something.
However, it looks like the Chrome API has been updated and thus the functions we intended to use are now obsolete. Is there any way for us to find similar functions?
Thanks in advance!
Native Messaging is not obsolete.
The example of manifest version 2 still works?
https://github.com/GoogleChrome/chrome-extensions-samples/tree/main/mv2-archive/api/nativeMessaging
I'm trying but chrome tell me only i can upload a version 3
An example with MV3 using Python host is in this PR https://github.com/GoogleChrome/chrome-extensions-samples/pull/617.
@guest271314 cool thanks i got it!
I have ready my small extension :D
Native Messaging is still supported and we recently reviewed the documentation here: https://developer.chrome.com/docs/extensions/mv3/nativeMessaging/
However, our sample (which should still work for the most part) is currently based on MV2: https://github.com/GoogleChrome/chrome-extensions-samples/tree/main/_archive/mv2/api/nativeMessaging. We should update this to MV3 and confirm it continues to work.
This PR fixes the issue. Though not sure whether the old one is still requiredred or not.