Advertisement
stuppid_bot

Untitled

Mar 30th, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var found = [];
  2.  
  3. chrome.extension.onMessage.addListener(function(msg, sender, sendResponse) {
  4. sendResponse({ message: 'Иди на хуй' });
  5. });
  6.  
  7. chrome.webRequest.onHeadersReceived.addListener(function(info) {
  8. // info.url
  9. console.log(info);
  10. }, {urls: ['*://*/*']}, ['responseHeaders']);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement