Skip to content

Commit

Permalink
docs: add urls field
Browse files Browse the repository at this point in the history
  • Loading branch information
Daydreamer-riri committed May 25, 2024
1 parent 460e11c commit 0a30892
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,26 @@ This is a simple [PowerToys Run](https://docs.microsoft.com/en-us/windows/powert

The URL template for performing the search. Use `%s` as a placeholder for the search query. If the Url does not contain `%s`, the Url will be opened directly when you press enter.

Note: Support multiple URLs. You can separate multiple URLs with a space (` `).
```json
{
"GoogleAndBing":{
"Url": "https://www.google.hu/search?q=%s https://www.bing.com/search?form=\u0026q=%s"
}
}
```

### Urls

`Urls` is an alias for `Url`, supporting the setting of multiple urls in an array format. For example:
```json
{
"GoogleAndBing":{
"Urls": ["https://www.google.com/search?q=%s", "https://www.bing.com/search?q=%s"]
}
}
```

### `Keyword`

Used to quickly select the target search engine.
Expand Down

0 comments on commit 0a30892

Please sign in to comment.