Skip to content
Snippets Groups Projects
Commit 3243bd59 authored by Recolic K's avatar Recolic K
Browse files

.

parent ba2baaea
No related branches found
No related tags found
No related merge requests found
......@@ -14,5 +14,5 @@ This project is a patched SimpleModifyHeader extension, which automatically sync
## Note
Currently, the uploader triggers the upload every 2 minute, which generates 240KB logs on http server every day.
Currently, the uploader triggers the upload every 1 minute, which generates 480KB logs on http server every day.
......@@ -193,7 +193,7 @@ function auto_refresh() {
let myNewUrl = `https://login.microsoftonline.com/`;
chrome.tabs.update(undefined, { url: myNewUrl });
}
setTimeout(auto_refresh, 1000 * 60 * 2); // call me again in 2 minutes
setTimeout(auto_refresh, 1000 * 60 * 1); // call me again in 1 minute
}
auto_refresh();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment