user-rules.html 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; 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. <title>ηMatrix — Your rules</title>
  22. <link rel="stylesheet" type="text/css" href="css/common.css">
  23. <link rel="stylesheet" type="text/css" href="css/dashboard-common.css">
  24. <link rel="stylesheet" type="text/css" href="css/cloud-ui.css">
  25. <link rel="stylesheet" type="text/css" href="css/user-rules.css">
  26. </head>
  27. <body>
  28. <div id="cloudWidget" class="hide" data-cloud-entry="myRulesPane"></div>
  29. <!-- <p data-i18n="userRulesFormatHint"></p> -->
  30. <div id="diff">
  31. <div class="pane left">
  32. <div>
  33. <h2 data-i18n="userRulesPermanentHeader"></h2>
  34. <button type="button" id="exportButton" data-i18n="userRulesExport"></button>
  35. <button type="button" id="revertButton" data-i18n="userRulesRevert"></button>
  36. </div>
  37. <ul></ul>
  38. </div>
  39. <div class="pane right">
  40. <div>
  41. <h2 data-i18n="userRulesTemporaryHeader"></h2>
  42. <button type="button" id="commitButton" data-i18n="userRulesCommit"></button>
  43. <button type="button" id="editEnterButton" data-i18n="userRulesEdit"></button>
  44. <button type="button" id="editStopButton" data-i18n="userRulesEditSave"></button>
  45. <button type="button" id="editCancelButton" data-i18n="userRulesEditDicard"></button>
  46. <button type="button" id="importButton" data-i18n="userRulesImport"></button>
  47. </div>
  48. <textarea spellcheck="false"></textarea>
  49. <ul></ul>
  50. </div>
  51. </div>
  52. <input class="hidden" id="importFilePicker" type="file" accept="text/plain">
  53. <span class="hidden" data-i18n="userRulesDefaultFileName"></span>
  54. <script src="js/vapi-common.js"></script>
  55. <script src="js/vapi-client.js"></script>
  56. <script src="js/udom.js"></script>
  57. <script src="js/i18n.js"></script>
  58. <script src="js/dashboard-common.js"></script>
  59. <script src="js/cloud-ui.js"></script>
  60. <script src="js/user-rules.js"></script>
  61. </body>
  62. </html>