Clear all cookies using firefox webextension api

761 Views Asked by At

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
                });
            }
        });
    }
});
2

There are 2 best solutions below

0
On

You don't need to enumerate tabs, just get pass an empty object as details argument to getAll

0
On