Created
April 30, 2018 19:45
-
-
Save cuylerstuwe/b515bd5e8e463316f1fab088cb9588b6 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 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