https://github.com/dhth/urll
browse URLs in a webpage in a recursive manner
https://github.com/dhth/urll
url urls
Last synced: 4 months ago
JSON representation
browse URLs in a webpage in a recursive manner
- Host: GitHub
- URL: https://github.com/dhth/urll
- Owner: dhth
- License: mit
- Created: 2025-03-04T19:05:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-02T21:09:23.000Z (about 1 year ago)
- Last Synced: 2025-06-13T08:11:18.953Z (about 1 year ago)
- Topics: url, urls
- Language: Rust
- Homepage: https://tools.dhruvs.space/urll
- Size: 107 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
urll
`urll` lets you browse URLs on a webpage in a recursive manner.

💾 Installation
---
**cargo**:
```sh
cargo install --git https://github.com/dhth/urll.git
```
⚡️ Usage
---
```text
Usage: urll [OPTIONS]
Arguments:
Options:
-t, --tui
-h, --help Print help
```
📟 TUI
---

`urll` lets you browse results in a TUI. You can interactively view results for
a URL returned as a result of a previous URL, creating a history of viewed
results in the process.
### TUI Keymaps
| Keymap | Action |
|---------------|-------------------------------------------|
| `j` / `Down` | go down |
| `k` / `Up` | go up |
| `Enter` | show results for URL under cursor |
| `g` | go to the top |
| `G` | go to the end |
| `` | go back in navigation history |
| `y` | yank URL under cursor to system clipboard |
| `Y` | yank all URLs to system clipboard |
| `o` | open URL under cursor in browser |
| `?` | show/hide help view |
| `Esc` / `q` | go back/quit |
| `` | quit immediately |