Files
Mostly-Harmless/html/background.html
T

26 lines
719 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Mostly Harmless Background Processes</title>
<script type="text/javascript" src="/fancy-settings/lib/store.js"></script>
<script type="text/javascript" src="/js/common.js"></script>
<script type="text/javascript">
var background;
background = new Background();
function initBackground() {
background.clearCache();
chrome.tabs.onUpdated.addListener(background.prepareBrowserAction);
background.watchMail();
window.setInterval(background.clearCache, (settings.get('cacheTime') * 60 * 1000));
reddit.getReddits();
}
window.onload = initBackground;
</script>
</head>
<body id="body"></body>
</html>