管理来自Google Chrome扩展程序的Cookie

时间:2011-07-14 13:47:02

标签: google-chrome cookies google-chrome-extension

我想删除存储在Google Chrome(localhost)中的一些Cookie。我知道我可以从首选项中访问它们,但我需要大量的点击才能实现这一目标。我很想知道你如何管理你的cookies。你使用哪种扩展名?

1 个答案:

答案 0 :(得分:6)

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