Skip to content

Latest commit

 

History

History
438 lines (437 loc) · 22.1 KB

File metadata and controls

438 lines (437 loc) · 22.1 KB
title Go beyond Bookmarks with BrainTool, the online Topic Manager
layout default
description BrainTool is a way of organizing things you want to remember and get back to, using notes and nested Topics. Its also a better way to control your browser.
audience landingpage

Tame Your Tabs

Easily Save Tabs by Topic.
Then close them until needed.

No longer fear closing a tab!

Autocomplete topics
BrainTool sidepanel

Curate your Topics

Organize and group your Topics however you wish.
Add Notes and TODOs

Control your Browser

Switch between contexts with ease.
Keep your workspace distraction-free!

Autocomplete topics

What the Press says:

...Gave bookmarks the performance and usability boost that I'd been waiting for all these years...it's a very nice, very fresh, take on bookmarks...I really like BrainTool. The rather simple interface might not be for everyone, but behind that simplicity is a lot of power.

ZDNET BUSINESS

Organize into topics

Organize your tabs and bookmarks into a common set of Topics.

Categorize and close

Quickly categorize, save and close tabs to unclutter your browser.

Incremental search

Incremental search and filtering makes it easy to find things again.

Topics are hierarichal

Organize and nest topics to add structure.

Add notes

Add notes to any bookmark or webpage for future reference.

Open and close tabs

Use the Topic Manager to open and close individual tabs or multiple tabs by topic.

Customize colors

Customize topics with colors and icons.

TODO functionality

Mark bookmarks and tabs as tasks with TODO functionality.

Keyboard controls

Keyboard shortcuts and support for power users.

Drag and Drop

Intuitive drag and drop from the browser bar into and within the Topic Manager.

Dark mode

Fully configureable display including density, font size and darkmode.

Free Forever

Free forever at any scale, optional premium features lock after 30 days.

What Our Users Say:

Chrome Web Store five star review
Alice Free Five star rating

It truly feels like the developers KNOW my brain. I checked off every bullet point on my list of needs and then some. I don't know how I ever lived without it.

Chrome Web Store five star review
Evan Smith Five star rating

I've tried other options, but BrainTool far surpasses them. It integrates seamlessly with my workflow, especially with organizing my research links and bookmarks, which is a game-changer for me.

Chrome Web Store five star review
Strati Vourakie Five star rating

The 1.0 update is phenomenal. Looks absolutely gorgeous, very visually pleasing & appealing, and a significant upgrade.

Chrome Web Store five star review
Boisjere Kayasta Five star rating

MANAGES WHAT MATTERS: Most tab, session or bookmark managers miss what really matters. The point is to manage the *meaning*, not just the identity of the target.

Chrome Web Store five star review
Kapil Bhalla Five star rating

Amazingly well thought out tool that makes my browser life so streamlined.

Chrome Web Store five star review
Eliot Baker Five star rating

Impressed with what BrainTool can do! The concept is brilliant, integrating bookmarks and tabs seamlessly with emacs org-mode notes fits into my workflow perfectly.

Chrome Web Store five star review
Wade Fogarty Five star rating

Everything is categorized and notated so I don't have to keep all the tabs open to keep track of all the crazy stuff I'm doing. Great extension!

Chrome Web Store five star review
Ronna Bruce Five star rating

I frequently need to open the same four websites, and this tool allows me to open them all at once or individually, which is fantastic!

Chrome Web Store five star review
Ching Yeow Pang Five star rating

BrainTool has helped me get my life organized in a way that I never thought possible.

Chrome Web Store five star review
Adrian Boncan Five star rating

5 stars for the amount of smart thinking that went into this, for the vision...it's a brilliant tab manager and you can use it to save content to hierarchies (topic maps) that work for you.

Chrome Web Store five star review
Stefanos Kalantzis Five star rating

it's a life saver, and a game changer for productivity and digital well-being...I especially love this project's Philosophy

Chrome Web Store five star review
tsuki Five star rating

Long time, I had trouble with bookmarks. But BT released me from confusion. I got back happy web surfing. Thank you very much!

Chrome Web Store five star review
Jorge Bracer Five star rating

having tried almost every other tab management extension I could find, this is the one that I finally believe is on the right track.

Chrome Web Store five star review
Solaire Phantom Five star rating

This extension naturally fits the bill of organizing such tab groups into a logical hierarchy of "work units" that can be quickly accessed / switched to.

Chrome Web Store five star review
Joel Roberts Five star rating

the tool itself is amazing...use this with TabFS, todoist.el, and rclone to do some pretty neat things. Very elegant.

Chrome Web Store five star review
Jeff Russell Five star rating

I've been using Braintool for several months now and I've been thrilled with it...The really great thing in BrainTool is the ability to save notes along with the link...The keyboard shortcuts also make it incredibly quick and easy to use

Chrome Web Store five star review
Richard Llyod Five star rating

This extension has me hooked as it's definitely not like your normal bookmark manager...The ability to use an org file to sycn was a genius move.

Chrome Web Store five star review
George Craioveanu Five star rating

This is becoming a powerhouse productivity tool! It is Bookmarks+Sessions+Outliner in one place...also, the whole idea of basing this on an org file is just brilliant!

Chrome Web Store five star review
Trevor Lewis Five star rating

I've used Session Buddy and OneTab. This is far superior...8 months later BrainTool absolutely still deserves 5 stars

Chrome Web Store five star review
Krish Five star rating

the reason I am leaving 5 stars is because of tagging, categorization, and notes taking that is clean and visible.

Chrome Web Store five star review
M Schupan Five star rating

look beyond the surface of BrainTool to discover it's hidden powers ... which are desperately needed in today's cloud-based environments where lots of information is hidden in the fog.

Chrome Web Store five star review
CSW MVP Five star rating

For a long time I was looking for a Tabs Outliner replacement because it is not actively developed. With Braintool I have found it.

Chrome Web Store five star review
Carina Bracer Five star rating

My husband recommended this extension as I stopped using Tabs Outliner

Chrome Web Store five star review
Jonathan Bauer Five star rating

As a current Tabs Outliner user, my first reaction is that BrainTool, even in its pre-1.0 release, is far more polished.

Chrome Web Store five star review
Michael Diamond Five star rating

Amazing App. I love that it's in plain text and uses org mode!

<script> document.addEventListener('DOMContentLoaded', function() { // scroll indicator behavior const scrollIndicator = document.querySelector('.scroll-indicator'); const testimonialScroll = document.querySelector('.testimonial-scroll'); if (scrollIndicator && testimonialScroll) { scrollIndicator.style.cursor = 'pointer'; // Check scroll position initially checkScrollPosition(); // Add scroll event listener to the testimonial-scroll element testimonialScroll.addEventListener('scroll', checkScrollPosition); // Function to check if scrolled to end function checkScrollPosition() { // Calculate if we're at the end (or within 5px of the end) const isAtEnd = testimonialScroll.scrollLeft + testimonialScroll.clientWidth >= testimonialScroll.scrollWidth - 5; // Hide indicator if at end, show if not if (isAtEnd) { scrollIndicator.style.display = 'none'; } else { scrollIndicator.style.display = 'block'; } } scrollIndicator.addEventListener('click', function() { // Add class to show scrollbar testimonialScroll.classList.add('show-scrollbar'); // Scroll right testimonialScroll.scrollBy({ left: 500, behavior: 'smooth' }); // Remove class after 2 seconds setTimeout(() => { testimonialScroll.classList.remove('show-scrollbar'); }, 5000); }); } // Find all landing images const landingImages = document.querySelectorAll('.landing-image'); landingImages.forEach(image => { // Find the parent row element const rowElement = image.closest('.row'); if (!rowElement) return; // Store original image source const staticImageSrc = image.src; // Create the animated GIF path by replacing Static.png with Animated.gif const animatedImageSrc = staticImageSrc.replace('Static.jpg', 'Animated.webp'); // Add event listeners to the row rowElement.addEventListener('mouseenter', function() { image.src = animatedImageSrc; }); rowElement.addEventListener('mouseleave', function() { image.src = staticImageSrc; }); }); }); </script>
Private

Your data is kept in plain text in a private continuously synced and versioned text file.

Org-mode

No lock-in!
BrainTool uses structured org-mode syntax compatible with other productivity tools.

Plain Text

The file can be separately edited, used across devices with import and export to/from multiple sources.

Open Source

BrainTool is open source. You can see what its doing!