Manual Execute
The most common workflow entry point. Supports manual execution via a run button, and being called by other workflows with parameter passing.
Context Menu
Register a workflow as a browser context menu item. Users right-click on matching pages and select the menu item to start the workflow.
Keyboard Shortcut
Launch a workflow with a single keystroke on matching pages by binding a custom keyboard shortcut. Main key and modifier keys are configured separately with a live preview of the key combination.
Signal Trigger
Listen for signals from other workflows to start the current workflow. Received data is automatically JSON-parsed and injected into a variable.
WebSocket Trigger
Receive server-pushed messages via a WebSocket long-lived connection. Automatically triggers a workflow when the event field matches.
SSE Trigger
Connect to an SSE endpoint and automatically trigger a workflow when the event type matches. The data field is automatically JSON-parsed and injected into a variable.
Element Monitor
Monitor a specified DOM element on matching pages for child element additions/removals or attribute changes, and automatically trigger the workflow on change.
Network Intercept
Automatically trigger a workflow on matching pages when the browser makes a network request matching the specified URL and HTTP method.
URL Match
Automatically start a workflow when the browser navigates to a page matching the specified URL pattern, after the page finishes loading. Supports include and exclude patterns.
Scheduled Trigger
Automatically execute a workflow at a configured time frequency. Supports every N minutes, every N hours, daily at a fixed time, and weekly on specific days — four modes.