whatsappsenzarubrica

Contact someone on whatsapp without having the number in the phone addressbook!

  1. // ==UserScript==
  2. // @name whatsappsenzarubrica
  3. // @namespace https://whatsappsenzarubrica.it/
  4. // @version 1.0
  5. // @description Contact someone on whatsapp without having the number in the phone addressbook!
  6. // @author Vito Tafuni
  7. // @match https://web.whatsapp.com/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=whatsappsenzarubrica.it
  9. // @grant none
  10. // @run-at context-menu
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. let phone = prompt("Phone number", "");
  17. if ( phone!=null && phone != "" ) {
  18. window.location='https://web.whatsapp.com/send?phone='+(phone.slice(0,1)=='+'?'':'+39')+phone.replaceAll(' ','');
  19. }
  20. })();
  21.  

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址