Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // ==UserScript==
  2. // @name KA Typed Answer
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description try to take over the world!
  6. // @author TBG
  7. // @match https://www.khanacademy.org/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. let arrayanswers = JSON.parse(window["./javascript/app-shell-package/app-entry.js"].props.componentProps.initialItem.itemData).question.widgets["expression 1"].options.answerForms
  12.  
  13. alert("Las respuestas son:" + '\n' + arrayanswers[0].value + '\n' + "o" + '\n' + arrayanswers[1].value);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement