Answer the question
In order to leave comments, you need to log in
How can I create an extension for another extension?
There is an extension. It starts at the right time and opens its window separately from Google. In this window there is a button "confirm". How can I track (in my extension) the opening of the window of the first extension and click on the confirm button with the code?
PS: In the open window of the first extension html markup. In fact, this Google window opens
Answer the question
In order to leave comments, you need to log in
Inside the background page, set the handler:
chrome.tabs.onCreated.addListener(function(tab) {
console.dir(tab);
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question