background.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <!-- ***************************************************************************
  3. ηMatrix - a browser extension to black/white list requests.
  4. Copyright (C) 2019 Alessio Vanni
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see {http://www.gnu.org/licenses/}.
  15. Home: https://gitlab.com/vannilla/ematrix
  16. uMatrix Home: https://github.com/gorhill/uMatrix
  17. -->
  18. <html>
  19. <head>
  20. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  21. <title>eMatrix</title>
  22. </head>
  23. <body>
  24. <!-- Each script (or anyway the majority of them) depends on the
  25. scripts above it, so keep these ordered like this -->
  26. <script src="js/polyfill.js"></script>
  27. <script src="lib/punycode.js"></script>
  28. <script src="lib/publicsuffixlist.js"></script>
  29. <script src="js/vapi-common.js"></script>
  30. <script src="js/vapi-core.js"></script>
  31. <script src="js/vapi-window.js"></script>
  32. <script src="js/vapi-messaging.js"></script>
  33. <script src="js/vapi-background.js"></script>
  34. <script src="js/vapi-tabs.js"></script>
  35. <script src="js/vapi-browser.js"></script>
  36. <script src="js/vapi-storage.js"></script>
  37. <script src="js/vapi-net.js"></script>
  38. <script src="js/vapi-cookies.js"></script>
  39. <script src="js/vapi-cloud.js"></script>
  40. <script src="js/background.js"></script>
  41. <script src="js/xal.js"></script>
  42. <script src="js/usersettings.js"></script>
  43. <script src="js/liquid-dict.js"></script>
  44. <script src="js/matrix.js"></script>
  45. <script src="js/utils.js"></script>
  46. <script src="js/assets.js"></script>
  47. <script src="js/httpsb.js"></script>
  48. <script src="js/uritools.js"></script>
  49. <script src="js/cookies.js"></script>
  50. <script src="js/logger.js"></script>
  51. <script src="js/messaging.js"></script>
  52. <script src="js/profiler.js"></script>
  53. <script src="js/storage.js"></script>
  54. <script src="js/pagestats.js"></script>
  55. <script src="js/tab.js"></script>
  56. <script src="js/traffic.js"></script>
  57. <script src="js/browsercache.js"></script>
  58. <script src="js/start.js"></script>
  59. </body>
  60. </html>