Raycast Manual
Raycast Manual
⬇️

How to import quicklinks?

You can import quicklinks from a JSON file using the Import Quicklinks command.

image

JSON Format

  • Root object – Array of quicklinks
  • Quicklink object
    • name - Quicklink title. Type: String (required)
    • link - Quicklink URL. Type: String (required)
    • iconName - Quicklink icon. Type: String (optional)
    • openWith - Target app to open quicklink. Type: String (optional)

If no app is specified with the openWith variable, the link will open in the default web browser. Deeplinks will be routed by the browser.

If no icon is specified with iconName, the default quicklink icon will be used.

Example of “quicklinks.json” file
quicklinks.json430 B

After the import is completed, you will see how many Quicklinks were added and how many duplicates were skipped. If a quick link has the same title and content, it’s considered to be a duplicate.

image
SlackXInstagram
[
  {
    "link":"https:\/\/duckduckgo.com\/?q={argument}","name":"Search DuckDuckGo"
  },
  {
    "openWith":"Finder","iconName":"folder-16","link":"~\/Downloads","name":"Downloads"
  },
  {
    "openWith":"Music","link":"https:\/\/music.apple.com\/gb\/station\/apple-music-1\/ra.978194965","name":"Apple 1"
  },
  {
    "link":"shortcuts:\/\/run-shortcut? Name={Test}","name":"Run Shortcut"
  }
]