blocklist.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
  5. <meta content="utf-8" http-equiv="encoding">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <!--
  8. /*******************************************************************************
  9. Cloud Firewall - a browser extension/addon that allows you to toggle blocking
  10. ON or OFF for allowing your browser to connect to web pages and web resources (
  11. like images, videos) hosted on popular top 5 cloud/companies.
  12. Copyright (C) 2019 Niklas Poslovski
  13. Copyright (C) 2019 Gokulakrishna Sudharsan
  14. This program is free software: you can redistribute it and/or modify
  15. it under the terms of the GNU General Public License as published by
  16. the Free Software Foundation, either version 3 of the License, or
  17. (at your option) any later version.
  18. This program is distributed in the hope that it will be useful,
  19. but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. GNU General Public License for more details.
  22. You should have received a copy of the GNU General Public License
  23. along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. Home: https://notabug.org/nipos/cloud-firewall
  25. */
  26. -->
  27. <title>Cloud Firewall</title>
  28. <link rel="stylesheet" href="css/font-awesome.min.css">
  29. <link rel="stylesheet" href="css/blocklist.css">
  30. </head>
  31. <body>
  32. <h1><img src="images/shield32.png">Cloud Firewall</h1>
  33. <center><kbd id="address"></kbd></center><br/>
  34. <center>
  35. <button type="button" class="btn btn-primary">
  36. <i18n>total</i18n> <span class="badge badge-light" id="cnt_Total">0</span>
  37. </button>
  38. <button type="button" class="btn btn-primary">
  39. Google <span class="badge badge-light" id="cnt_Google">0</span>
  40. </button>
  41. <button type="button" class="btn btn-primary">
  42. Amazon <span class="badge badge-light" id="cnt_Amazon">0</span>
  43. </button>
  44. <button type="button" class="btn btn-primary">
  45. Facebook <span class="badge badge-light" id="cnt_Facebook">0</span>
  46. </button>
  47. <button type="button" class="btn btn-primary">
  48. Apple <span class="badge badge-light" id="cnt_Apple">0</span>
  49. </button>
  50. <button type="button" class="btn btn-primary">
  51. Microsoft <span class="badge badge-light" id="cnt_Microsoft">0</span>
  52. </button>
  53. <button type="button" class="btn btn-primary">
  54. Cloudflare <span class="badge badge-light" id="cnt_Cloudflare">0</span>
  55. </button>
  56. </center><br/><br/>
  57. <dl class="row" id="linklist" style="max-width:100%;overflow-x:auto"></dl>
  58. <script src="js/popup/blocklist.js"></script>
  59. </body>
  60. <script src="js/i18n.js"></script>
  61. </html>