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

popup.html 722B

1234567891011121314151617181920212223242526
  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. /* avoid an excessively wide status text */
  10. white-space: pre;
  11. text-overflow: ellipsis;
  12. overflow: hidden;
  13. max-width: 400px;
  14. }
  15. </style>
  16. <script src="jquery.js"></script>
  17. <script src="popup.js"></script>
  18. </head>
  19. <body>
  20. <div id="mirror" style="display:none">This website may be blocked in your region.<br />
  21. <button>Take me to a mirror</button>
  22. </div>
  23. <div id="nomirror">This website has no mirror provided by RWB</div>
  24. </body>
  25. </html>