I am trying to create a firefox addon which allows to clear all set cookies. Now I can only get and remove only cookies set for opened tab. How to get all cookies and remove them using firefox webextension api. thanks for helping.
browser.tabs.query({}).then(tabs => {
for (tab of tabs) {
browser.cookies.getAll({url: tab.url}).then(cookies => {
for (cookie of cookies) {
browser.cookies.remove({
name: cookie.id
});
}
});
}
});
You don't need to enumerate tabs, just get pass an empty object as
details
argument togetAll