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('清除完成') })
上一篇:十分钟“手撕”七大排序


下一篇:minIO集成springboot-创建key