Skip to content

Instantly share code, notes, and snippets.

@viniceosm
Last active July 2, 2018 02:43
Show Gist options
  • Save viniceosm/08e247634ecbcb64cdbaf2cebe90162c to your computer and use it in GitHub Desktop.
Save viniceosm/08e247634ecbcb64cdbaf2cebe90162c to your computer and use it in GitHub Desktop.
mudar background do web whatsapp

pode ser usado como um bookmark para executar sempre quando entrar no https://web.whatsapp.com/

se trocar de contato vai sair kk print1

javascript: (function () {
    var img = 'https://i.pinimg.com/originals/2b/51/d4/2b51d41600db9a0b0aca819d248918c4.jpg';
    
    document.querySelector('#main>.YUoyu').style.backgroundImage = 'url(' + img + ')';
    document.querySelector('#main>.YUoyu').style.backgroundPosition = '0 0';
    document.querySelector('#main>.YUoyu').style.backgroundSize = '100% 100vh';
    document.querySelector('#main>.YUoyu').style.opacity = '1';
    document.querySelector('#main>.YUoyu').style.filter = 'blur(23px)';
    document.querySelector('#main>.YUoyu').style.WebkitFilter = 'blur(23px)';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment