Action | Keys |
---|---|
Toggle Object/Edit Mode | Tab |
Move | G |
Rotate | R |
Scale | S |
This file contains 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
/* | |
Copy and paste this code into your browser's javascript console. | |
Now you can use: | |
- nextLoop() to keep clicking next until it becomes disabled | |
- skipNext() to skip the current video and click the next button | |
- clickAllNext() to click all the little hotspot things and click the next button | |
*/ | |
/* | |
(function() { let v = document.querySelector("video"); v.currentTime = v.duration; v.dispatchEvent(new Event("ended")); v.playbackRate = 100; })() |