logger-ui.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <!-- ***************************************************************************
  3. ηMatrix - a browser extension to black/white list requests.
  4. Copyright (C) 2019 Alessio Vanni
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see {http://www.gnu.org/licenses/}.
  15. Home: https://gitlab.com/vannilla/ematrix
  16. uMatrix Home: https://github.com/gorhill/uMatrix
  17. -->
  18. <html>
  19. <head>
  20. <meta charset="utf-8">
  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">
  32. <option value="tab_bts" data-i18n="statsPageDetailedBehindTheScenePage">
  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><input id="filterInput" type="text" placeholder="loggerFilterInputPlaceholder">
  41. <input id="maxEntries" type="text" size="5" title="loggerMaxEntriesTip">
  42. </div>
  43. </div>
  44. <div id="content">
  45. <style id="tabFilterer"></style>
  46. <style id="popupFilterer"></style>
  47. <table>
  48. <colgroup><col><col><col><col><col></colgroup>
  49. <tbody></tbody>
  50. </table>
  51. </div>
  52. <div id="popupContainer">
  53. <div><span>&#xf068;</span>&ensp;<span>&#xf00d;</span></div>
  54. </div>
  55. <div style="display: none;">
  56. <div id="emphasizeTemplate"><span><span></span><b></b><span></span></span></div>
  57. <div id="hiddenTemplate"><span style="display:none;"></span></div>
  58. </div>
  59. <script src="js/vapi-common.js"></script>
  60. <script src="js/vapi-client.js"></script>
  61. <script src="js/udom.js"></script>
  62. <script src="js/i18n.js"></script>
  63. <script src="js/logger-ui.js"></script>
  64. </body>
  65. </html>