hosts-files.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 — Hosts files</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. <link rel="stylesheet" type="text/css" href="css/hosts-files.css">
  27. </head>
  28. <body>
  29. <p data-i18n="hostsFilesPrompt"></p>
  30. <p>
  31. <button id="buttonApply" class="custom important reloadAll disabled" data-i18n="hostsFilesApplyChanges"></button>
  32. <button id="buttonUpdate" class="custom important reloadAll disabled" data-i18n="hostsFilesUpdateNow"></button>
  33. <button id="buttonPurgeAll" class="custom disabled" data-i18n="hostsFilesPurgeAll"></button>
  34. </p>
  35. <ul id="options">
  36. <li><input type="checkbox" id="autoUpdate"><label data-i18n="hostsFilesAutoUpdatePrompt" for="autoUpdate"></label></li>
  37. <li><span id="listsOfBlockedHostsPrompt"></span></li>
  38. </ul>
  39. <ul id="lists"></ul>
  40. <div id="externalLists">
  41. <p data-i18n="hostsFilesExternalListsHint" style="margin: 0 0 0.25em 0; font-size: 13px;"></p>
  42. <textarea id="externalHostsFiles" dir="ltr" spellcheck="false"></textarea>
  43. </div>
  44. <div id="templates" style="display: none;">
  45. <ul>
  46. <li class="listEntry">
  47. <input type="checkbox"><!-- -->
  48. <a class="content" type="text/plain" target="_blank" href=""></a>&#8203;<!-- -->
  49. <a class="fa support" href="" target="_blank">&#xf015;</a>&#8203;<!-- -->
  50. <a class="fa remove" href="">&#xf014;</a>&#8203;<!-- -->
  51. <a class="fa mustread" href="" target="_blank">&#xf05a;</a>&#8203;<!-- -->
  52. <span class="fa status unsecure" title="http">&#xf13e;</span>&#8203;<!-- -->
  53. <span class="counts dim"></span>&#8203;<!-- -->
  54. <span class="fa status obsolete" title="hostsFilesExternalListObsolete">&#xf071;</span>&#8203;<!-- -->
  55. <span class="fa status cache">&#xf017;</span>&#8203;<!-- -->
  56. <span class="fa status updating">&#xf110;</span>&#8203;<!-- -->
  57. <span class="fa status failed">&#xf06a;</span>
  58. </li>
  59. </ul>
  60. </div>
  61. <script src="js/vapi-common.js"></script>
  62. <script src="js/vapi-client.js"></script>
  63. <script src="js/udom.js"></script>
  64. <script src="js/i18n.js"></script>
  65. <script src="js/dashboard-common.js"></script>
  66. <script src="js/hosts-files.js"></script>
  67. </body>
  68. </html>