hosts-files.html 3.2 KB

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