You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 1, 2024. It is now read-only.
From the web page, use the runtime.sendMessage or runtime.connect APIs to send a message to a specific app or extension. For example:
// The ID of the extension we want to talk tovareditorExtensionId='<sample extension id>';// Make a simple requestchrome.runtime.sendMessage(editorExtensionId,{openUrlInEditor: url},function(response){if(!response.success){handleError(url);}});
But in Opera chrome.runtime is actually undefined so the method provided by the doc is not working. I don't know if the doc here is still correct.