Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function getCookies(domain, name, callback) {
- chrome.cookies.get({"url": domain, "name": name}, function(cookie) {
- if(callback) {
- callback(cookie.value);
- }
- });
- }
- //como usar: getCookies("http://www.example.com", "id", function(id){alert(id);});
Advertisement
Add Comment
Please, Sign In to add comment