about.html 4.7 KB

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