Notifications
Clear all
BugOverflow
1
Posty
1
Users
0
Reactions
813
Widok
0
21/04/2022 8:26 pm
Topic starter
manifest v3
1 Answer
0
21/04/2022 8:27 pm
Topic starter
sender (popup.js)
function testAction(){ chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { chrome.tabs.sendMessage( tabs[0].id, { something:"my data" },function (response){}); }); }
don't forget about "{active: true, currentWindow: true}"