rules.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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-2020 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/rules.css">
  30. </head>
  31. <body>
  32. <h1><img src="images/shield32.png">Cloud Firewall</h1>
  33. <center><i18n>rulescenter</i18n></center><br/>
  34. <i18n>completelydisabled</i18n>:<br/>
  35. <div id="ignorelist" style="max-width:100%;overflow-x:auto"></div><br/>
  36. <i18n>specificsettings</i18n>:<br/>
  37. <div id="rulelist" style="max-width:100%;overflow-x:auto"></div>
  38. <div style="height:50px">
  39. <script src="js/popup/rules.js"></script>
  40. </body>
  41. <script src="js/i18n.js"></script>
  42. </html>