O texto selecionado pode ser enviado para uma URL com as seguintes bookmarklet :
javascript: function postClipboard(){
var http = new XMLHttpRequest();
var url = "http://www.example.com";
http.open("POST", url, true);
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http.send(window.getSelection());
}
postClipboard()