您的位置:首页 > 科技 > IT业 > chrome扩展清除指定站点缓存chrome.browsingData.remove

chrome扩展清除指定站点缓存chrome.browsingData.remove

2024/12/26 23:24:14 来源:https://blog.csdn.net/qq_35606400/article/details/140461938  浏览:    关键词:chrome扩展清除指定站点缓存chrome.browsingData.remove

案例

// 注意仅支持在后台运行
chrome.browsingData.remove({since: Date.now() - 1000 * 60 * 60 * 24 * 7, // 整个浏览最近7天的origins: ["http://www.xxx.com"], // 如果设置了origins则仅对这里的地址,否则则所有站点
}, {"appcache": true,"cache": true,"cacheStorage": true,"cookies": true,// "downloads": true,// "fileSystems": true,// "formData": true,// "history": true,"indexedDB": true,"localStorage": true,// "passwords": true,"serviceWorkers": true,"webSQL": true
}, () => {console.log('清除完成')
})

参考资料

  • chrome扩展api>chrome.browsingData

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com