logger-ui.html 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta 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 data-i18n="loggerPageName"></title>
  24. <link rel="stylesheet" type="text/css" href="css/common.css">
  25. <link rel="stylesheet" type="text/css" href="css/logger-ui.css">
  26. <link rel="shortcut icon" type="image/png" href="img/icon_16.png">
  27. </head>
  28. <body class="compactView f">
  29. <div id="toolbar">
  30. <div>
  31. <select id="pageSelector">
  32. <option value="" data-i18n="statsPageDetailedAllPages"></option>
  33. <option value="tab_bts" data-i18n="statsPageDetailedBehindTheScenePage"></option>
  34. </select>
  35. <span id="refresh" class="button disabled fa">&#xf021;</span>
  36. </div>
  37. <div>
  38. <span id="compactViewToggler" class="button fa"></span>
  39. <span id="clean" class="button fa disabled">&#xf00d;</span>
  40. <span id="clear" class="button fa disabled">&#xf12d;</span>
  41. <span id="filterButton" class="button fa">&#xf0b0;</span>
  42. <input id="filterInput" type="text" placeholder="loggerFilterInputPlaceholder">
  43. <input id="maxEntries" type="text" size="5" title="loggerMaxEntriesTip">
  44. </div>
  45. </div>
  46. <div id="content">
  47. <style id="tabFilterer"></style>
  48. <style id="popupFilterer"></style>
  49. <table>
  50. <colgroup><col><col><col><col><col></colgroup>
  51. <tbody></tbody>
  52. </table>
  53. </div>
  54. <div id="popupContainer">
  55. <div><span>&#xf068;</span>&ensp;<span>&#xf00d;</span></div>
  56. </div>
  57. <div style="display: none;">
  58. <div id="emphasizeTemplate"><span><span></span><b></b><span></span></span></div>
  59. <div id="hiddenTemplate"><span style="display:none;"></span></div>
  60. </div>
  61. <script src="js/vapi-common.js"></script>
  62. <script src="js/vapi-client.js"></script>
  63. <script src="js/udom.js"></script>
  64. <script src="js/i18n.js"></script>
  65. <script src="js/logger-ui.js"></script>
  66. </body>
  67. </html>