Skip to content

aloony/barry

Repository files navigation

Barry

A browser extension that lets you navigate to URLs quickly from the address bar using custom shortcuts.

What it does

Type s followed by a space and your shortcut in the address bar, then press Enter. Barry matches your input against your shortcuts and opens the corresponding URL.

Example: s gh → opens https://github.com

Features

  • Regex patterns — Patterns are full regex. gh matches "gh"; gh.* matches "gh", "ghfoo", etc. Use ^ and $ for exact matches.
  • Capture groups — Use $1, $2, etc. in the URL to insert captured groups.
    Example: pattern ^(\d{1,5})$, URL http://localhost:$1. Typing s 4321 opens http://localhost:4321.
  • Manage shortcuts — Click the extension icon to add, edit, and delete shortcuts. Data is stored in sync storage.

Installation

  • Chrome Web Store — Install from the store (when published).
  • Unpacked — Load the extension folder in chrome://extensions with Developer mode enabled.

Default shortcuts (on first install)

Pattern URL
gh https://github.com/
^(\d{1,5})$ http://localhost:$1

License

MIT — see LICENSE.

P.S.

I wanted to try out vibe coding properly for the first time, and this was made in a few hours. Despite all of my reservations about the AI, I admit that this was.. fun. Relaxing, for a change. Why did I write this part here at all, you might ask? Well.. no reason in particular, I just felt like it. The same reason the extention is called "Barry".

If someone finds this extention of help to them, then I consider this time well spent.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors