Skip to content

Instantly share code, notes, and snippets.

@paulgreg
Created November 21, 2014 21:35
Show Gist options
  • Save paulgreg/9804188c6b7198bf494d to your computer and use it in GitHub Desktop.
Save paulgreg/9804188c6b7198bf494d to your computer and use it in GitHub Desktop.
Bookmarklet : send SMS via free mobile
javascript:var u='USERNAME', p='PASSWORD', m = prompt('Message ?'); if (m) {var r = new XMLHttpRequest();r.open('GET', 'https://smsapi.free-mobile.fr/sendmsg?user='+u+'&pass='+p+'&msg='+encodeURIComponent(m), true);r.send(null);}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment