QUOTE(Fudo Masamune @ Aug 26 2015, 01:22)

oh, also, is it possible to change the riddle limiter's music to a file in local file?
I tried changing the music url to "file:///C:/BJV.mp3" and it didn't work :/
Step 1.
In the metadata block, add
CODE
// @grant GM_getResourceURL
// @resource snd_url file:///C:/BJV.mp3
Step 2.
Change the audio element as follows
CODE
var audio = new Audio(GM_getResourceURL('snd_url'))
Step 3.
Refresh the page, and it should be working now.
(Don't worry about the "re-download issue", as the file will be re-downloaded only when the url has been changed.)