mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/1664 Modularization is a necessary step toward possibly publishing a more complete nodejs package to allow using uBO's filtering capabilities outside of the uBO extension. Additionally, as per feedback, remove undue usage of console output as per feedback: - https://github.com/uBlockOrigin/uBlock-issues/issues/1664#issuecomment-888451032
22 lines
818 B
HTML
22 lines
818 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>uBlock Origin</title>
|
|
</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>
|
|
</body>
|
|
</html>
|