Tired of the stock Music app on your Mac? Give Soor a try! Download the free trial.
The only 3rd party music app with full Apple music support. Play, search, like, share and add songs from across the entire Apple Music catalogue.
3 pre-defined themes to make the app look how you want. More theme colors coming soon.
function sendMessage() { var chatInput = document.querySelector('.chat-input'); if (chatInput) { chatInput.value = "!hello"; // Setting the chat to send a "!hello" message var event = new Event('input', { bubbles: true }); chatInput.dispatchEvent(event); // You might need to simulate a send button click or use a timeout // setTimeout(function(){ chatInput.dispatchEvent(new Event('keydown', {key: 'Enter'})); }, 1000); } }