Bookmarklets

Check out more bookmarklets in the cheats & hacks page.


How to add bookmarklets:

On this webpage, click the bookmark button, then a box will appear. Click "more". Where it says URL, copy and paste the javascript bookmarklet code. Name the bookmarklet, and then click save. Your bookmarklet will appear with other bookmarks and bookmarklets.

Bookmarklets will not work on browser system pages, like the new tab page.

Bookmarklet to cloak Illuminate:

This bookmarklet will cloak teacherease.net in an about:blank page. It is open source in this repository.

Note: This will also work for most other webpages as well. Replace "https://teacherease.net" with another website and it will usually work (except for the sites that cannot be embedded).

javascript: (function () {var url = "https://teacherease.net"; var urlobj = new window. URL (window. location.href); win = window.open(); win.document.body.style.margin = "0"; win. document.body.style.height = "100h"; var iframe = win. document. createElement("iframe"); iframe.style.border = "none"; iframe.style.width = "100%"; iframe.style.height = "100%"; iframe.style.margin = "0"; iframe.referrerpolicy = "no-referrer"; iframe.allow = "fullscreen"; iframe.src = url. toString(); win.document.body.appenaChild (iframe); var script = win. document.createElement("script"); win.document.body.appendChild(script); 5)();

About:blank Embedder

This bookmarklet does the same thing as the one above, but it allows you to enter a custom URL.

javascript: (function () {var url = prompt("Paste a link to be embedded into an about:blank page. Include https://.", "https://teacherease.net"); var urlObj = new window.URL(window.location.href); win = window.open(); win.document.body.style.margin = "0"; win.document.body.style.height = "100vh"; var iframe = win.document.createElement("iframe"); iframe.style.border = "none"; iframe.style.width = "100%"; iframe.style.height = "100%"; iframe.style.margin = "0"; iframe.referrerpolicy = "no-referrer"; iframe.allow = "fullscreen"; iframe.src = url.toString(); win.document.body.appendChild(iframe); })();

Edit +

This bookmarklet will allow you to edit a webpage just by clicking on different elements on the page. To close the bookmarklet, refresh the page or just click on the bookmarklet again.

javascript:if(document.body.contentEditable != 'true')void(document.body.contentEditable = 'true');else void(document.body.contentEditable = 'false');

Google Translate

This bookmarklet will allow you to translate the webpage into a different language.

javascript:var url="https://translate.google.com/translate?u=";var href=encodeURI(location.href);var lang="?tl=en";open(url+href+lang);

Youtube Video Information

Allows you to view extra information about a youtube video (including dislikes).

javascript:var api="https://returnyoutubedislikeapi.com/votes?videoId=";var url=location.search.split("v=")[1].split("&")[0];if(location.hostname==="www.youtube.com"){open(api+url);}else if(location.hostname==="youtu.be"){open(api+url);}else if(location.hostname==="www.youtube-nocookie.com"){open(api+url);}

More bookmarklets are coming soon. You can request bookmarklets to be added by contacting us. Just request the bookmarklet by giving a name, description, and if you have the javascript code, add that as well.