about.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.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://gitlab.com/vannilla/ematrix/tags"><span data-i18n="aboutChangelog"></span></a></li>
  39. <li><a href="https://gitlab.com/vannilla/ematrix/" data-i18n="aboutCode"></a></li>
  40. <li><a href="https://gitlab.com/vannilla/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><span data-i18n="aboutContributors"></span>
  50. <ul>
  51. <li><span data-i18n="aboutCodeContributors"></span> <a href="https://github.com/gorhill/uMatrix/graphs/contributors">uMatrix, <a href="https://github.com/gorhill/httpswitchboard/graphs/contributors">HTTP Switchboard</a></li>
  52. <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>
  53. <li><span data-i18n="aboutTranslationContributors"></span> <a href="https://github.com/gorhill/uMatrix/wiki/Translation-work-contributors">Crowdin</a></li>
  54. </ul>
  55. </ul>
  56. <h2 data-i18n="aboutUserDataHeader"></h2>
  57. <div>
  58. <p>
  59. <button type="button" id="backupUserDataButton" data-i18n="aboutBackupButton"></button>
  60. <button type="button" id="restoreUserDataButton" data-i18n="aboutRestoreButton"></button>
  61. <input id="restoreFilePicker" type="file" accept="text/plain" style="display:none;">
  62. </p>
  63. <p style="margin-left: 2em;" data-i18n="aboutOr"></p>
  64. <p><button type="button" id="resetUserDataButton" data-i18n="aboutResetButton"></button></p>
  65. </div>
  66. <span style="display: none;" data-i18n="aboutStorageUsed"></span>
  67. <span style="display: none;" data-i18n="aboutBackupFilename"></span>
  68. <span style="display: none;" data-i18n="aboutRestoreConfirm"></span>
  69. <span style="display: none;" data-i18n="aboutRestoreError"></span>
  70. <span style="display: none;" data-i18n="aboutResetConfirm"></span>
  71. <script src="js/vapi-common.js"></script>
  72. <script src="js/vapi-client.js"></script>
  73. <script src="js/udom.js"></script>
  74. <script src="js/i18n.js"></script>
  75. <script src="js/dashboard-common.js"></script>
  76. <script src="js/about.js"></script>
  77. </body>
  78. </html>