background.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. This program is free software: you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation, either version 3 of the License, or
  12. (at your option) any later version.
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. GNU General Public License for more details.
  17. You should have received a copy of the GNU General Public License
  18. along with this program. If not, see {http://www.gnu.org/licenses/}.
  19. Home: https://libregit.spks.xyz/heckyel/ematrix
  20. uMatrix Home: https://github.com/gorhill/uMatrix
  21. -->
  22. <title>ηMatrix</title>
  23. </head>
  24. <body>
  25. <!-- Each script (or anyway the majority of them) depends on the
  26. scripts above it, so keep these ordered like this -->
  27. <script src="js/vapi-common.js"></script>
  28. <script src="js/vapi-core.js"></script>
  29. <script src="js/vapi-window.js"></script>
  30. <script src="js/vapi-messaging.js"></script>
  31. <script src="js/vapi-background.js"></script>
  32. <script src="js/vapi-tabs.js"></script>
  33. <script src="js/vapi-browser.js"></script>
  34. <script src="js/vapi-storage.js"></script>
  35. <script src="js/vapi-net.js"></script>
  36. <script src="js/vapi-cookies.js"></script>
  37. <script src="js/vapi-cloud.js"></script>
  38. <script src="js/background.js"></script>
  39. <script src="js/xal.js"></script>
  40. <script src="js/usersettings.js"></script>
  41. <script src="js/matrix.js"></script>
  42. <script src="js/utils.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>