├── README.md ├── working-poorly ├── webcache-unblocker.js ├── wayback-bypass.js └── google-translate-proxy.js ├── inspect-element.js ├── index.html ├── bingEmbed.js ├── escaped.js └── Ultimate-unblocker.html /README.md: -------------------------------------------------------------------------------- 1 | # bookmarklets 2 | My library of bookmarklets for bypassing school filters (securly, goguardian, etc) make sure to read the readme to see how to use. 3 | -------------------------------------------------------------------------------- /working-poorly/webcache-unblocker.js: -------------------------------------------------------------------------------- 1 | //Uses cached websites to return a version of the site you wish to visit. Most sites are not cached, and won't work. Games don't work. 2 | javascript:(function(){var val = prompt("Enter the webpage you want to unblock. This will not work for games. Many sites will not be cached, and will not work. Made by Marc#8019.", "");location = "http://webcache.googleusercontent.com/search?q=cache:" + escape(val)})() -------------------------------------------------------------------------------- /inspect-element.js: -------------------------------------------------------------------------------- 1 | //This lets you edit text in a website. Execute the bookmarklet and all texts will act as fields that you can edit. Execute the 2 | //bookmarklet again to turn it off and lock in the edits. 3 | 4 | javascript:if(document.body.contentEditable !== 'true') { 5 | document.body.contentEditable = 'true'; document.designMode='on'; void 0 6 | } else { 7 | document.body.contentEditable = 'false'; document.designMode='off'; void 0 8 | } 9 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /working-poorly/wayback-bypass.js: -------------------------------------------------------------------------------- 1 | //Many security filters natively block this (GoGuardian doesnt) playing games doesnt work. 2 | //Extremely slow and shitty. Use as last resort. 3 | javascript:(function(){var val = prompt("Enter the url of the page you want to unblock, and exclude the https:// and the www. YOU MUST be on a website for this code to execute, if the url bar at the top of your screen is blank, this will not work. Made by Marc#8019 and r/ChromebookBypass", "");location = "https://web.archive.org/web/" + escape(val)})() 4 | -------------------------------------------------------------------------------- /bingEmbed.js: -------------------------------------------------------------------------------- 1 | //turns your current website into a bing iframe. All browsing is contained in the iframe. many sites don't allow iframes, 2 | //and will refuse connection. Html games work, no flash. 3 | //Krunker.io works. 4 | //Change the url to a proxy if you want more functionality. 5 | javascript:document.body.innerHTML = "