background.html 2.8 KB

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