A Chrome extension that provides a convenient way to manage and use shortlinks (URL shortcuts). It allows you to use shortlinks directly in the address bar and maintains both built-in and custom shortcuts organized by categories.
- Quick Access: Type a shortlink in the address bar to instantly navigate to the corresponding URL
- Categorized Organization: Shortlinks are organized in categories for better overview
- Custom Shortlinks: Add your own shortlinks and categories
- Remote Rules: Load shortlinks from a remote JSON file with offline support
- Configurable Search: Choose between Google and DuckDuckGo for non-shortlink searches
- Dark Mode: Supports both light and dark themes with system preference detection
- Filter View: Filter between built-in and custom shortlinks
- Click-to-Copy: Easily copy shortlinks with visual feedback
- Responsive UI: Clean, modern interface that works on all screen sizes
- Clone this repository or download the source code
- Open Chrome and navigate to
chrome://extensions/ - Enable "Developer mode" in the top right corner
- Click "Load unpacked" and select the extension directory
- Type a shortlink in Chrome's address bar (e.g., "gh" for GitHub)
- Press Enter to be redirected to the corresponding URL
- If the shortlink isn't recognized, it performs a search using your chosen search engine
- Click the extension icon in Chrome's toolbar
- Use the "+" buttons to add new shortlinks or categories
- Use the filter dropdown to view all, built-in, or custom shortlinks
- Click a shortlink to copy it to clipboard
- Click the URL to open it in a new tab
- Custom items can be deleted using the "×" button that appears on hover
- Click the "Settings" button in the extension
- Enter the URL of your remote rules.json file
- The file should follow the format shown in the example
- Click the "Settings" button in the extension
- Select your preferred search engine (Google or DuckDuckGo)
- Non-shortlink searches will automatically use your chosen engine
{
"categories": {
"social": {
"name": "Social Media",
"links": {
"tw": "https://twitter.com",
"fb": "https://facebook.com"
}
},
"dev": {
"name": "Development",
"links": {
"gh": "https://github.com"
}
}
}
}