uBlock/src/background.html

23 lines
818 B
HTML
Raw Normal View History

2014-06-23 22:42:43 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2015-05-26 12:43:46 +00:00
<title>uBlock Origin</title>
2014-06-23 22:42:43 +00:00
</head>
<body>
<script src="lib/lz4/lz4-block-codec-any.js"></script>
<script src="js/webext.js"></script>
<script src="js/vapi.js"></script>
<script src="js/vapi-common.js"></script>
<script src="js/vapi-background.js" type="module"></script>
<script src="js/vapi-background-ext.js" type="module"></script><!-- platform-specific to extend common code paths -->
<script src="js/utils.js" type="module"></script>
<script src="js/ublock.js" type="module"></script>
<script src="js/storage.js" type="module"></script>
<script src="js/tab.js" type="module"></script>
<script src="js/messaging.js" type="module"></script>
<script src="js/start.js" type="module"></script>
<script src="js/commands.js" type="module"></script>
2014-06-23 22:42:43 +00:00
</body>
</html>