For discussing the development and usage of Checkout UI extensions, post-purchase extensions, web pixels, Customer Accounts UI extensions, and POS UI extensions
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plugin Name</title>
<!-- Correct reference to the CSS file -->
<link rel="stylesheet" href="{{ 'jawebmain.css' | asset_url }}">
{% schema %}
{
"name": "Jaweb Chatbot Plugin",
"target": "body",
"settings": []
}
{% endschema %}
</head>
<body>
<section>
<div id="chat-root"><!-- Your chat plugin will be injected here --></div>
</section>
<!-- Correct reference to the JS file -->
<script defer src="{{ 'jawebmain.js' | asset_url }}"></script>