Files
Mostly-Harmless/html/background.html
T
Kerrick Long 2c6c3754d5 Reorganized, made object-oriented, cleaned up.
Note that I have not yet gotten voting working again.
2011-06-28 01:24:40 -05:00

24 lines
603 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() {
cache.removeAll();
button.setBadgeDefaults();
chrome.tabs.onUpdated.addListener(background.prepareBrowserAction);
}
window.onload = initBackground;
</script>
</head>
<body id="body"></body>
</html>