📦refactor: 压缩图标

This commit is contained in:
O2bmm 2022-10-17 20:41:00 +08:00
parent 6cc41d408c
commit 15fa39b9a2
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 423 B

After

Width:  |  Height:  |  Size: 232 B

View File

@ -18,8 +18,8 @@ chrome.runtime.onConnect.addListener(function (Port) {
});
});
// 10分钟清理一次数据
chrome.alarms.create("clear", { periodInMinutes: 10 });
// 30分钟清理一次数据
chrome.alarms.create("clear", { periodInMinutes: 30 });
chrome.alarms.onAlarm.addListener(function (alarm) {
alarm.name == "clear" && clearRedundant();
});