> ## Documentation Index
> Fetch the complete documentation index at: https://dapplets.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Web Guide App

> A web guide example that can be displayed on any website.

```javascript theme={null}
{
  "metadata": {
    "name": "Web Guide",
    "image": {
      "ipfs_cid": "bafkreihwu5plfrt7ndwsodrnjsjlkqbx3lqfua7sbfpcdfagz5kjpwj55y"
    }
  },
  "controller": "${REPL_ACCOUNT}/widget/WebGuide.Main",
  "$targets": [
    {
      "namespace": "engine",
      "contextType": "website"
    }
  ],
  "$parsers": "any",
  "$permissions": {
    "documents": true
  }
}
```

Explanation

* `controller:` The main component responsible for the web guide’s functionality.

* `$targets:` Specifies that the web guide will be injected on any website.

* `$parsers:` Indicates that it can work with any type of data.

* `$permissions:` Allows access to documents, necessary for the web guide’s functionality.
