This bookmarklet will bring you from the student welcome page to the teacher dashboard.
This bookmarklet will bring you from the student welcome page to the teacher dashboard.
Student Welcome Page
Student Welcome Page
Teacher Dashboard
Teacher Dashboard
How to use
How to use
Bookmark this page or any page.
Edit the bookmark so the URL is the below:
javascript:(function() { const currentUrl = window.location.href; const regex = /activitybuilder\/student-greeting\/([^\/?#]+)/; const match = currentUrl.match(regex); if (match) { const newUrl = %60https://teacher.desmos.com/dashboard/${match[1]}?checkAmplifyLogin=true%60; window.location.href = newUrl; } else { alert("This link only works when you are at the 'Welcome back student page.' See mrkuang.com/desmos"); }})();