You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, after doing some research with data:text/html links, I realized you can create an Iframe to any site, and Hapara does not check data: links, so I came up with this link, make sure to Bookmark it. data:text/html,<!DOCTYPE html> <html> <head> <title>full screen iframe</title> <style type="text/css"> html { overflow: auto; } html, body, div, iframe { margin: 0px; padding: 0px; height: 100%; border: none; } iframe { display: block; width: 100%; border: none; overflow-y: auto; overflow-x: hidden; } </style> </head> <body> <iframe src="https://www.google.com.au" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="100%" scrolling="auto" id="google"> </iframe> </body> </html> (This may not work for you if your school doesn't really use data: links.) If that doesn't work, you can head to my GitHub, and download the Iframe there. Hope you enjoy!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
So, after doing some research with data:text/html links, I realized you can create an Iframe to any site, and Hapara does not check data: links, so I came up with this link, make sure to Bookmark it.
data:text/html,<!DOCTYPE html> <html> <head> <title>full screen iframe</title> <style type="text/css"> html { overflow: auto; } html, body, div, iframe { margin: 0px; padding: 0px; height: 100%; border: none; } iframe { display: block; width: 100%; border: none; overflow-y: auto; overflow-x: hidden; } </style> </head> <body> <iframe src="https://www.google.com.au" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="100%" scrolling="auto" id="google"> </iframe> </body> </html>
(This may not work for you if your school doesn't really use data: links.) If that doesn't work, you can head to my GitHub, and download the Iframe there. Hope you enjoy!Beta Was this translation helpful? Give feedback.
All reactions