Generated by Claude
Use at your own risk
This Chrome extension allows you to use shortcuts in your Google searches that get automatically replaced with predefined values.
`rr -> site:reddit.com
`hn -> site:news.ycombinator.com
- Download or clone this repository
- Open Chrome and go to
chrome://extensions/
- Enable "Developer mode" in the top right
- Click "Load unpacked" and select the extension directory
Simply type your search query in Chrome's address bar with any of the supported shortcuts. The extension will automatically replace the shortcuts when you perform the search.
Example:
- Typing:
@rr homelab server rack
- Results in:
homelab server rack site:reddit.com
To add new shortcuts, modify the shortcuts
object in background.js
:
const shortcuts = {
'@rr': 'site:reddit.com',
'@hn': 'site:news.ycombinator.com',
// Add new shortcuts here
'@gh': 'site:github.com'
};