Last active
May 27, 2018 17:51
-
-
Save cuylerstuwe/262d1cb0de94949c6e1f5d2dd295b97c to your computer and use it in GitHub Desktop.
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
| // ==UserScript== | |
| // @name Yes I Understand Names | |
| // @namespace salembeats | |
| // @version 1.1 | |
| // @description UPDATE: Oops, targeted the wrong iframe level in the last version. | |
| // @author Cuyler Stuwe (salembeats) | |
| // @include https://ops.cielo24.com/mediatool/transcription/jobs/* | |
| // @grant none | |
| // ==/UserScript== | |
| const speakerNameSpellingFrame = document.querySelector("iframe[src='https://sites.google.com/site/crowdsurfwork/guidelines/speaker-name-spelling']"); | |
| if(speakerNameSpellingFrame) { | |
| const acceptButton = document.querySelector(".modal-footer .btn.btn-primary.accept"); | |
| acceptButton.click(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment