Skip to content

Instantly share code, notes, and snippets.

@cuylerstuwe
Last active May 27, 2018 17:51
Show Gist options
  • Select an option

  • Save cuylerstuwe/262d1cb0de94949c6e1f5d2dd295b97c to your computer and use it in GitHub Desktop.

Select an option

Save cuylerstuwe/262d1cb0de94949c6e1f5d2dd295b97c to your computer and use it in GitHub Desktop.
// ==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