Preferences
Maximum number of redirects to follow before stopping the trace.Type: Textfield
Required: No
Default:
Required: No
Default:
10Controls how many redirect hops the extension will follow in a chain. When the limit is reached, the trace stops and marks the chain as incomplete.When to adjust this setting
When to adjust this setting
- Increase if you encounter legitimate redirect chains that exceed 10 hops (rare but possible with complex marketing campaigns)
- Decrease if you want faster results and don’t need to follow long chains
- Keep default for most use cases
Request timeout in milliseconds for each HTTP request in the redirect chain.Type: Textfield
Required: No
Default:
Required: No
Default:
5000 (5 seconds)Sets how long to wait for each HTTP request before aborting with a timeout error. This applies to each step in the redirect chain, not the total trace time.When to adjust this setting
When to adjust this setting
- Increase if you’re tracing URLs with slow-responding servers
- Decrease if you want faster failure detection for unreachable servers
- Network considerations: Slower connections may require higher values
Configuration in code
The extension reads preferences using the Raycast API:Default behavior
When preferences are not explicitly set:- Extension follows up to 10 redirects per chain
- Each request times out after 5 seconds
- Chains exceeding limits are marked as incomplete
- Timeout errors display:
Request timeout after {timeout}ms
Examples
Tracing complex marketing campaigns
Tracing complex marketing campaigns
Some marketing URLs pass through multiple tracking services:Recommended settings:
- Max Redirects:
15 - Timeout:
7000
Quick validation on fast networks
Quick validation on fast networks
For simple redirect checks on reliable infrastructure:Recommended settings:
- Max Redirects:
5 - Timeout:
3000
Debugging slow or unreliable servers
Debugging slow or unreliable servers
When working with servers that have slow response times:Recommended settings:
- Max Redirects:
10(default) - Timeout:
10000