How do I clear cookies for a specific site with one click?

Search for a command to run...

No comments yet. Be the first to comment.
In Go, variables are passed by value, which means that when we pass variables as arguments to functions, Go makes a copy of those values for the function to use. However, the behaviour of Slice can be a bit confusing at first glance, especially if we...

As someone who's been using ChatGPT for a while now, I've been exploring how to maximise its benefits and integrate it into my daily life. I've been working on a side project to develop a Discord bot that interacts with ChatGPT, similar to the one pr...

The Go net/http package provides a robust set of functionality to allow us to deal with HTTP requests and responses. However, reading the response body is a common task that requires a bit of caution. In this blog, we will explore the pitfall I exper...

Today we are going to write our own custom json.Unmarshal() method. I find it very useful and can make our code more maintainable and readable if we can make good use of type alias and the json.Unmarshal method. Let's say we want to decode a JSON-enc...

Have you ever tried to maintain services between environments and got lost in all the variables? Or even broken things by accident? Today I'm going to give you some tips on how to speed up your workflow and make things easier. My focus will be mainly...

I often find that clearing cookies for the website that I’m visiting is a real annoyance because it comes with several steps to use the built-in feature that chrome provides to clear them. Besides, most of the Chrome Extensions will clear all the website data and you will lose all your login details for some websites. If you’re lucky you might be fine with signing in.
But the truth is people (at least in my experience) won’t always remember the username/password when needed. This can become a huge disaster.
Well, it’s time to build my:rocket: chrome extension called Clean Captain.
Before we jump in and get our hands dirty, we have to understand the pain point.
I used to practice the following steps to clear cookies before I rolled out this extension, which turned out to be not so user-friendly.
Select the lock icon next to website URL in the Address bar.
Click Cookies with numbers identified how many cookies in use.
Scroll down and locate the site that you'd like to clear the cookies.
Click Remove will only delete the cookies from the site you selected in the previous step.
Clean Captain is a lightweight extension that enables you to remove the cookies from most websites that need cookies enabled to work properly. Protect your privacy and delete all activity from specifying websites. You can keep sessions or cookies from those websites you trust.

Clean Captain from Chrome Web Store
Loves to get your hands dirty, check out the Source Code
I hope you will find this guide useful and if you have any questions about how to create your chrome extensions, I'd be glad to answer them.
Cheers!