├── 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 |