Matas Vaitkevicius
Matas Vaitkevicius

Reputation: 61401

Remove specific cookie on firefox

I am doing some testing of firefox and got myself into situation where I need some cookies to be present while some others to be removed. I could write javascript that would do this, but was wondering if there is a way to do it via UI, like it can be done on Chrome dev tools.

Upvotes: 2

Views: 133

Answers (2)

Orace
Orace

Reputation: 8359

You can do this with a raw firefox:

First click on the small earth/lock logo at the left of the address:

Click on favicon

Then click on "More informations"

In the popup, click "See the cookies"

In the second pop-up, you can selected and delete any cookie.

Upvotes: 1

DavidPostill
DavidPostill

Reputation: 7921

How do I remove specific cookies on firefox

You can do this with the Web Developer extension, which adds various web developer tools to the browser.

  1. Right click on page

  2. Select Web Developer

  3. Select `Cookies

  4. Select View Cookie Information

    enter image description here

  5. The resulting tab/window has options to Delete and Edit the cookies for the current web page.

    enter image description here

Upvotes: 1

Related Questions