Find access to blocked websites https://rsf.org/collateral-freedom

123456789101112131415161718192021222324252627282930
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Getting Started Extension's Popup</title>
  5. <style>
  6. body {
  7. font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
  8. font-size: 100%;
  9. text-overflow: ellipsis;
  10. overflow: hidden;
  11. width: 400px;
  12. text-align:center;
  13. }
  14. button {
  15. width: 100%;
  16. height: 50px;
  17. margin-top: 10px;
  18. }
  19. </style>
  20. <script src="jquery.js"></script>
  21. <script src="popup.js"></script>
  22. </head>
  23. <body>
  24. <div id="mirror" style="display:none">This website may be blocked in your region.<br />
  25. <button>Take me to a mirror</button>
  26. </div>
  27. <div id="nomirror">This website has no mirror provided by RWB</div>
  28. </body>
  29. </html>