logger-ui.html 3.3 KB

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