WA Contacts Saver is a Chrome extension that allows you to manually save phone numbers by editing the content.js
file. It enhances your WhatsApp experience by providing a convenient way to replace phone numbers with custom names.
- Custom Contact Names: Replace phone numbers with personalized names in your WhatsApp chats.
- Manual Number Saving: Users need to manually edit the
content.js
file to save custom names for phone numbers.
-
Clone the repository:
git clone https://github.com/zubairjammu786/wacontactsaver.git
-
Open Chrome and navigate to chrome://extensions/.
-
Enable "Developer mode" in the top-right corner.
-
Click "Load unpacked" and select the folder where you cloned the repository.
After installation, open WhatsApp Web in your Chrome browser. To save a custom name for a phone number, manually edit the content.js file in the extension folder.
let name = phoneNumber;
switch (phoneNumber) {
case '+92 321 xxxxxxx':
name = 'Zubair';
break;
// Add more cases for other phone numbers
}
Add more cases to the switch statement for other phone numbers you want to customize. Remember the format of phone number first and check how they are displayable on screen. For examples some numbers can have spaces like '+92 321 xxxxxxx' and can be without spaces '+92321xxxxxxx' Save the changes to content.js. Refresh your WhatsApp Web page, and the custom names should be applied.
Contributions are welcome! Feel free to open issues or submit pull requests to improve the extension.
This is not an official extension by WhatsApp or Meta . Use it at your own ease.