> For the complete documentation index, see [llms.txt](https://stellarrover.gitbook.io/replaysdk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://stellarrover.gitbook.io/replaysdk/extensions/trigger.md).

# Trigger

The code for loading the Chrome Debugger Trigger step is as follows:

```typescript
import ReplaySDK from 'imean-replay-sdk';

ReplaySDK.init({
  mode: 'Default',
  workflow: {
    id: 'test',
    steps: [
      {
        title: 'Click Create',
        id: 'AhPPa81go4KMr5CotK2eJ',
        type: 'Action',
        selector: '.mr0WL ',
        actionType: 'click',
        value: 'Create',
        extension:[
            {
              name: 'ChromeDebugger',
              type: ExtensionType.Trigger,
              options: undefined
            }
        ]
      }
    ]
  }
});
```
