Skip to content
Project Blue Support Docs home
Project Blue Support Docs home

Whitelabel branding

In order to remove our Project Blue branding from the conversation’s tab, you’ll need to utilize a custom script to update the nav to allow for this

Example after implementing script:

Screenshot 2025-08-05 at 11.20.13 PM.png

Directions:

  1. Head over to your agency account settings (Found in the left hand nav bar)

  2. Navigate over to Company > Whitelabel from the left hand top nav bar

Screenshot 2025-08-05 at 11.22.15 PM.png

  1. Scroll down to Custom JS and add the Script file below, paste it, save changes then please proceed to the desired sub account where Project Blue is installed and you’ll see our iMessage only option

  2. Javascript:

<script> const observer = new MutationObserver(() => { const tabs = document.querySelectorAll('.nav-link.open-sms-tab'); const target = Array.from(tabs).find(tab => tab.textContent.trim() === 'Project Blue iMessage'); if (target) { target.textContent = 'iMessage'; observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true, }); </script>