asset-viewer.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 Alessio Vanni
  8. This program is free software: you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation, either version 3 of the License, or
  11. (at your option) any later version.
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program. If not, see {http://www.gnu.org/licenses/}.
  18. Home: https://libregit.org/heckyel/ematrix
  19. uMatrix Home: https://github.com/gorhill/uMatrix
  20. -->
  21. <meta name="viewport" content="width=device-width, initial-scale=1">
  22. <title>eMatrix — Asset viewer</title>
  23. <style>
  24. #content {
  25. font: 12px monospace;
  26. white-space: pre;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div id="content"></div>
  32. <script src="js/vapi-common.js"></script>
  33. <script src="js/vapi-client.js"></script>
  34. <script src="js/udom.js"></script>
  35. <script src="js/asset-viewer.js"></script>
  36. </body>
  37. </html>