
After posting several articles about the impact of AI on developers and sharing resources to help mitigate some of the risks, I wanted to share a new tool I've been building and experimenting with.
I introduce you to ThinkMode!
A chrome extension that helps developers choose a thinking mode before prompting AI, and calculate the associated cognitive cost after prompting AI.
AI makes it easy to skip thinking.
This tool helps slow down and integrate thinking before and after prompting the AI.
As a browser extension it can be easily integrated into your everyday LLM chat prompting workflow.
Before opening a prompt, ThinkMode asks you to describe what you are trying to do.
It then recommends one of 5 modes:
The goal is to match the prompt with the kind of thinking intended for the task.
The tool also includes a manual AI usage log.
After using AI, you can log how you used it.
Usage is grouped into three categories:
Each log adds to a cognitive cost meter. Riskier usage fills it faster.
Cognitive cost measures tradeoffs between using AI to expand understanding vs outsourcing judgment.
When the meter is full, ThinkMode temporarily pauses supported AI chat pages for 5 minutes.
Most developer tools optimize for speed.
I wanted to experiment with a tool that introduces intentional friction in order to surface reflection.
ThinkMode is a Manifest V3 Chrome extension built with React, TypeScript, and Vite.
The architecture includes:
The extension currently supports ChatGPT, Claude, and Gemini pages.
There is no backend nor LLM API call involved.
ThinkMode does not read conversations, scrape page content, send analytics, or store data remotely.
The recommendation engine is deterministic. It uses simple keyword rules to choose a thinking mode which felt reasonable considering this is an MVP.
Sometimes the useful AI tool is not the one that gives you a better answer.
It can be the one that helps you ask a better question.
I'm curious:
Have you ever caught yourself accepting an AI answer before fully understanding the problem?
If so, what habits or tools help you stay engaged in the thinking process?
You can download the extension free here from the chrome web store
Otherwise you can run the extension locally using developer mode from chrome extensions. The code is open source here on github.
Feel free to fork it and adapt it to your own needs.
Would really appreciate a star or review if you find it useful!
If you can think of ways to improve this tool or want to see other features, let me know in the comments!