nPhoenix

Roubar cookies.

Apr 13th, 2012
583
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function getCookies(domain, name, callback) {
  2.     chrome.cookies.get({"url": domain, "name": name}, function(cookie) {
  3.         if(callback) {
  4.             callback(cookie.value);
  5.         }
  6.     });
  7. }
  8.  
  9. //como usar: getCookies("http://www.example.com", "id", function(id){alert(id);});
Advertisement
Add Comment
Please, Sign In to add comment