now i am using this ```html
index.html
<body>
<h1>My Extension</h1>
<button id="actionButton">Click Me</button>
<script src="index.js"></script> <!-- Link to the external JavaScript file -->
</body>```
# index.js
document.getElementById("actionButton").addEventListener("click", function() {
alert("Button clicked!");
});```