hosts-files.html 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. 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.spks.xyz/heckyel/ematrix
  19. uMatrix Home: https://github.com/gorhill/uMatrix
  20. -->
  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>