Learn JavaScript Example in Shortcuts

Edit Web Page In JavaScript Here is a code:
Copy this script in shortcuts to run JavaScript in a web page

document.body.contentEditable = "true"; document.designMode = "on" completion();

Change Webpage Font:

var style = document.createElement("style"); style.type = "text/css"; var head = document.head; head.appendChild(style); style.sheet.insertRule("* { font-family: 'Chosen Font', cursive !important; }"); completion(true);

Random Number Generator Shortcuts Link