mirror of
https://github.com/wassname/Mostly-Harmless.git
synced 2026-06-27 16:10:28 +08:00
2c6c3754d5
Note that I have not yet gotten voting working again.
24 lines
603 B
HTML
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> |