i want to send message from Background.js to Content.js which in currently inactive or active:false in the browser.
Here is manifest.js
{
"manifest_version": 2,
"browser_action":{
"default_icon": "",
"default_popup": "index.html"
},
"permissions": [
"activeTab",
"declarativeContent",
"tabs",
"background",
"downloads",
"cookies",
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"https://someurls",
"https://someurls"
],
"js": ["jquery-3.4.1.min.js","content.js"]
}
],
"background":
{
"scripts": ["background.js"],
"persistent": true
}
}