Skip to content

Instantly share code, notes, and snippets.

@satyr
Created August 14, 2009 17:26
Show Gist options
  • Select an option

  • Save satyr/167975 to your computer and use it in GitHub Desktop.

Select an option

Save satyr/167975 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Merriam-Webster auto audio
// @namespace http://d.hatena.ne.jp/murky-satyr
// @description s/embed/audio/
// @include http://www.merriam-webster.com/cgi-bin/audio.pl?*
// ==/UserScript==
var embed = document.getElementsByTagName('embed')[0];
var audio = document.createElement('audio');
audio.src = embed.src;
audio.autoplay = true;
embed.parentNode.replaceChild(audio, embed);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment