https://caiorss.github.io/bookmarklet-maker/
javascript: (() => {
let targetUrl = "http://wa.me/";
let formatPhoneNumber = (str) => {return ('' + str).replace(/\D/g, '')}
new Promise (
(setQuery) => {let input = window.prompt("WhatsApp number:");
if (input) setQuery(input);}
)
.then (
(query) => window.open(targetUrl + formatPhoneNumber(query))
);
})();
javascript: (() => {
let targetUrl = "https://2gis.kz/almaty/search/";
new Promise (
(setQuery) => {let input = window.prompt("2GIS address:");
if (input) setQuery(input);}
)
.then (
(query) => window.open(targetUrl + query)
);
})();