Skip to content

Instantly share code, notes, and snippets.

@cuylerstuwe
Created April 30, 2018 19:45
Show Gist options
  • Select an option

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

Select an option

Save cuylerstuwe/b515bd5e8e463316f1fab088cb9588b6 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Allow MIDI in work iframes
// @namespace salembeats
// @version 1
// @description .
// @author Cuyler Stuwe (salembeats)
// @include https://worker.mturk.com/projects/3*/tasks/*?assignment_id=*
// @grant none
// ==/UserScript==
document.querySelectorAll("iframe").forEach(iFrame => {
iFrame.setAttribute("allow", "midi");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment