Khan Academy Bookmarklet that is meant to automatically answer your current question correctly. Simply copy and paste this code into a new bookmark. The article describes a bookmarklet designed to automatically answer questions on Khan Academy by sending a fabricated attempt to the site's API. The provided JavaScript code constructs a request with a fake correct answer and a random time taken, then posts it to the Khan Academy server. The summary notes that the code is incomplete, as it requires finding the correct answer and seed for the current problem. khan marklet.js This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters Show hidden characters javascript: / Build URI endpoint for Khan API / var url="/api/v1/user/exercises/"+userExercise.exercise+"/problems/"+ userExercise.total done+1 +"/attempt"; / Slowly, but surely, collecting the data for a successfull API call / var data={ complete:1, count hints:0, time taken:Math.floor Math.random 10 , attempt number:userExercise.total done+1, attempt content:777, / <-- Need to find the correct answer / sha1:userExercise.exercise model.sha1, seed:KhanUtil.getPrime , / <-- Need to find correct seed for current problem / problem type:0 }; / Ping the Mothership / $.post url,data ;