开发者

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});
    }
});
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜