about.html 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.0">
  22. <title>eMatrix — About</title>
  23. <link rel="stylesheet" type="text/css" href="css/common.css">
  24. <link rel="stylesheet" type="text/css" href="css/dashboard-common.css">
  25. <style>
  26. ul {
  27. list-style-type: none;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <h2>eMatrix <span id="aboutVersion"></span></h2>
  33. <ul>
  34. <li><span id="aboutStorageUsed"></span><br>
  35. </ul>
  36. <h3>eMatrix links</h3>
  37. <ul>
  38. <li><a href="https://libregit.org/heckyel/ematrix/releases"><span data-i18n="aboutChangelog"></span></a></li>
  39. <li><a href="https://libregit.org/heckyel/ematrix/" data-i18n="aboutCode"></a></li>
  40. <li><a href="https://libregit.org/heckyel/ematrix/issues" data-i18n="aboutIssues"></a></li>
  41. </ul>
  42. <h3>uMatrix links</h3>
  43. <ul>
  44. <li><a href="https://github.com/gorhill/uMatrix/releases"><span data-i18n="aboutChangelog"></span></a></li>
  45. <li><a href="https://github.com/gorhill/uMatrix/wiki"><span data-i18n="aboutDoc"></span></a></li>
  46. <li><a href="https://github.com/gorhill/httpswitchboard/wiki/Permissions"><span data-i18n="aboutPermissions"></span></a></li>
  47. <li><a href="https://github.com/gorhill/uMatrix" data-i18n="aboutCode"></a></li>
  48. <li><a href="https://github.com/gorhill/uMatrix/issues" data-i18n="aboutIssues"></a></li>
  49. <li>
  50. <span data-i18n="aboutContributors"></span>
  51. <ul>
  52. <li><span data-i18n="aboutCodeContributors"></span> <a href="https://github.com/gorhill/uMatrix/graphs/contributors">uMatrix</a>, <a href="https://github.com/gorhill/httpswitchboard/graphs/contributors">HTTP Switchboard</a></li>
  53. <li><span data-i18n="aboutIssueContributors"></span> <a href="https://github.com/gorhill/uMatrix/issues?q=is%3Aissue">uMatrix</a>, <a href="https://github.com/gorhill/httpswitchboard/issues?q=is%3Aissue">HTTP Switchboard</a></li>
  54. <li><span data-i18n="aboutTranslationContributors"></span> <a href="https://github.com/gorhill/uMatrix/wiki/Translation-work-contributors">Crowdin</a></li>
  55. </ul>
  56. </li>
  57. </ul>
  58. <h2 data-i18n="aboutUserDataHeader"></h2>
  59. <div>
  60. <p>
  61. <button type="button" id="backupUserDataButton" data-i18n="aboutBackupButton"></button>
  62. <button type="button" id="restoreUserDataButton" data-i18n="aboutRestoreButton"></button>
  63. <input id="restoreFilePicker" type="file" accept="text/plain" style="display:none;">
  64. </p>
  65. <p style="margin-left: 2em;" data-i18n="aboutOr"></p>
  66. <p><button type="button" id="resetUserDataButton" data-i18n="aboutResetButton"></button></p>
  67. </div>
  68. <span style="display: none;" data-i18n="aboutStorageUsed"></span>
  69. <span style="display: none;" data-i18n="aboutBackupFilename"></span>
  70. <span style="display: none;" data-i18n="aboutRestoreConfirm"></span>
  71. <span style="display: none;" data-i18n="aboutRestoreError"></span>
  72. <span style="display: none;" data-i18n="aboutResetConfirm"></span>
  73. <script src="js/vapi-common.js"></script>
  74. <script src="js/vapi-client.js"></script>
  75. <script src="js/udom.js"></script>
  76. <script src="js/i18n.js"></script>
  77. <script src="js/dashboard-common.js"></script>
  78. <script src="js/about.js"></script>
  79. </body>
  80. </html>