<script type="text/javascript">
// This will modify the first and 3rd addon items
// Get all elements with the class 'gz-memberapp-addonfeename'
const elements = document.querySelectorAll('.gz-memberapp-addonfeename');

// Replace the text content of the first instance
if (elements.length > 0) {
    elements[0].textContent = '$100'; // Replace with your desired text
}

// Replace the text content of the third instance
if (elements.length > 2) {
    elements[2].textContent = '$100'; // Replace with your desired text
}
</script>