Is it possible to send data from an content script to a developer tools tab panel?
I am writing an extension and need to pass data from the inject.js
file to my dev tools panel extension.
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["assets/js/inject.js"],
"run_at": "document_end"
}
]