Advertisement
Guest User

Untitled

a guest
Apr 17th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //function to make xmlhttprequests
  2. chrome.runtime.onMessage.addListener(function(request, sender, callback) {
  3.     $.get(request.url, function() {
  4.     }).done(function(data) {
  5.         callback(data.responseText);
  6.  
  7.     }).fail(function() {
  8.         callback();
  9.     });
  10.  
  11.     return true; // prevents the callback from being called too early on return
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement