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 Nov 8, 2023. It is now read-only.
One tricky area is passing messages from a contentscript back into a devtools panel.
There's no direct connectivity between the page being inspected and DevTools extension panels -- we usually recommend this flow: DOM messaging from the injected inspected page code to the content script, then extension messaging to send that to the background page and the front-end iframe.
Example: polymer extension message passing via CustomEvent on the window
https://developer.chrome.com/extensions/devtools has great overview of communicating between the various pieces, but it's still a little incomplete.
One tricky area is passing messages from a contentscript back into a devtools panel.
There's no direct connectivity between the page being inspected and DevTools extension panels -- we usually recommend this flow: DOM messaging from the injected inspected page code to the content script, then extension messaging to send that to the background page and the front-end iframe.
Example: polymer extension message passing via CustomEvent on the window
another option is: buffering events in inspected page and polling them
chrome.devtools.inspectedPage.eval()
.The text was updated successfully, but these errors were encountered: