One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
function saveContacts() { | |
var contacts = document.querySelectorAll("._ccCW.FqYAR.i0jNr"); | |
for (var i = 0; i < contacts.length; i++) { | |
var contact_name = contacts[i].title; | |
if (contact_name[0] == "+" && unsaved_contacts.find(e => e == contact_name) == null) { | |
unsaved_contacts.push(contact_name); | |
} | |
} |