Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions extensions/fast-multilinks/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift
compiled_raycast_rust

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/fast-multilinks/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/fast-multilinks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Fast MultiLinks Changelog

## [Initial Version] - {PR_MERGE_DATE}
26 changes: 26 additions & 0 deletions extensions/fast-multilinks/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Fast MultiLinks

Save groups of URLs and open them all at once with a single command. Perfect for daily workflows — open your morning dashboards, project links, or research tabs instantly.

## Features

- **List Groups** — View, create, edit, and delete URL groups
- **Create Group from Clipboard** — Automatically detects the last 5 URLs from your clipboard history and lets you save them as a group
- **Open Group** — Open all URLs in a group via a deeplink or Quicklink (no-view command)
- **Per-Group Browser** — Choose which browser each group opens in (Arc, Safari, Chrome, Firefox, Edge, Brave, or system default)
- **Quicklink Support** — Create Raycast Quicklinks for any group so it appears in your root search

## Commands

| Command | Description |
|---------|-------------|
| List Groups | View and manage all saved URL groups |
| Create Group from Clipboard | Create a new group from recent clipboard URLs |
| Open Group | Open all URLs in a group by name (for Quicklinks and deeplinks) |

## Usage

1. **Create a group** — Use "Create Group from Clipboard" or "List Groups → Add New Group"
2. **Pick a browser** — Choose which browser the group should open in
3. **Add to root search** — After saving, press Enter to create a Quicklink
4. **Open instantly** — Search for the group name in Raycast and hit Enter
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions extensions/fast-multilinks/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const { defineConfig } = require("eslint/config");
const raycastConfig = require("@raycast/eslint-config");

module.exports = defineConfig([
...raycastConfig,
]);
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading