Alf*_*red 2 cookies google-chrome google-chrome-extension
我想删除存储在Google Chrome(localhost)中的一些Cookie.我知道我可以从首选项中访问它们,但我需要大量的点击才能实现这一目标.我很想知道你如何管理你的cookies.你使用哪种扩展名?
使用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});
}
});
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
4407 次 |
最近记录: |