jiatern / whatsappstartchat_alt

Workaround for whatsapp desktop (Windows)

Home Page:https://jiatern.github.io/whatsappstartchat_alt/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WhatsappStartChat Bookmarklet

This bookmarklet allows you to start chatting with any number in Whatsapp without adding it as a contact. This version only works with Whatsapp DESKTOP. Download from Microsoft Store here: https://www.microsoft.com/store/productId/9NKSQGP7F2NH

Drag and drop the bookmarklet below to your Bookmark bar to save it. After that, click the bookmark in your browser, and a pop up will appear. Simply enter the full phone number with country code e.g. 60123456789.

Your browser will ask you to open the link in Whatsapp Desktop. Tick the checkbox to always open in Whatsapp Desktop.

[WA New Chat](javascript: { var val= prompt("Enter phone number","");} { var openChat = phone => { const link = document.createElement("a"); link.setAttribute("href", https://wa.me/${phone}); document.body.append(link); link.click(); document.body.removeChild(link); }; } if (val) openChat(val))

or you can manually add the following code as a bookmark:

javascript: { var val= prompt("Enter phone number","");} { var openChat = phone => {   const link = document.createElement("a");   link.setAttribute("href", `https://wa.me/${phone}`); document.body.append(link); link.click();   document.body.removeChild(link); }; } if (val) openChat(val))

About

Workaround for whatsapp desktop (Windows)

https://jiatern.github.io/whatsappstartchat_alt/

License:GNU General Public License v3.0