Manage cookies from Google Chrome Extension
I like to delete some cookies stored in Goog开发者_运维技巧le Chrome(localhost). I know I can access them from the preferences but I need a lot of clicks to achieve this. I would love to know how you manage your cookies. Which extension do you use?
That's pretty straight forward with Cookies API
//delete all localhost cookies
chrome.cookies.getAll({domain: "localhost"}, function(cookies) {
for(var i=0; i<cookies.length;i++) {
chrome.cookies.remove({url: "http://localhost" + cookies[i].path, name: cookies[i].name});
}
});
精彩评论