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

12345678910111213141516171819202122232425262728293031323334353637
  1. <!doctype html>
  2. <!--
  3. This page is shown when the extension button is clicked, because the
  4. "browser_action" field in manifest.json contains the "default_popup" key with
  5. value "popup.html".
  6. -->
  7. <html>
  8. <head>
  9. <title>Getting Started Extension's Popup</title>
  10. <style>
  11. body {
  12. font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
  13. font-size: 100%;
  14. }
  15. #status {
  16. /* avoid an excessively wide status text */
  17. white-space: pre;
  18. text-overflow: ellipsis;
  19. overflow: hidden;
  20. max-width: 400px;
  21. }
  22. </style>
  23. <!--
  24. - JavaScript and HTML must be in separate files: see our Content Security
  25. - Policy documentation[1] for details and explanation.
  26. -
  27. - [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
  28. -->
  29. <script src="popup.js"></script>
  30. </head>
  31. <body>
  32. <div id="status"></div>
  33. <img id="image-result" hidden>
  34. </body>
  35. </html>