asset-viewer.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <!-- ***************************************************************************
  6. ηMatrix - a browser extension to black/white list requests.
  7. Copyright (C) 2019-2020 Alessio Vanni
  8. Modified 2022 by Jesus E.
  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://c.hgit.ga/software/ematrix.git
  20. uMatrix Home: https://github.com/gorhill/uMatrix
  21. -->
  22. <meta name="viewport" content="width=device-width, initial-scale=1">
  23. <title>eMatrix — Asset viewer</title>
  24. <style>
  25. #content {
  26. font: 12px monospace;
  27. white-space: pre;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div id="content"></div>
  33. <script src="js/vapi-common.js"></script>
  34. <script src="js/vapi-client.js"></script>
  35. <script src="js/udom.js"></script>
  36. <script src="js/asset-viewer.js"></script>
  37. </body>
  38. </html>