All Features
developer
URL Scheme - Stealth Mode Background Posting
Execute actions silently without UI dialogs via stealthMode parameter
Automation workflows shouldn"t show dialogs. Stealth mode performs URL scheme actions in background without confirmation dialogs or UI interruptions.
How to Use
- 1Create script with multiple posts to schedule
- 2Add stealthMode=true to URLs
- 3Example: statuz://schedule?text=Post&date=...&stealthMode=true
- 4Execute script
- 5Watch posts schedule without dialogs
- 6No UI interruptions during batch
- 7All posts appear on calendar
- 8Notifications still work (optional)
- 9Try cron job scheduling
- 10Automated posting runs unattended
- 11Calendar fills without user interaction
- 12Compare to normal mode - stealth eliminates interruptions
Key Features
Why It's Critical
Automation scripts showing 20 confirmation dialogs defeats the purpose. Stealth mode makes true batch automation possible - execute hundreds of operations unattended.
Pro Tips
Example Batch Script
#!/bin/bash
# Schedule 50 posts without dialogs
for post in posts/*.txt; do
text=$(cat "$post")
date=$(get_schedule_time)
open "statuz://schedule?text=$text&date=$date&stealthMode=true"
sleep 0.5
done
echo "All posts scheduled silently"