Skip to content

Instantly share code, notes, and snippets.

@cherenkov
Created September 18, 2009 16:27
Show Gist options
  • Select an option

  • Save cherenkov/189154 to your computer and use it in GitHub Desktop.

Select an option

Save cherenkov/189154 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name embed_WMP_disable_AutoStart
// @namespace http://d.hatena.ne.jp/Cherenkov/
// @include http://www.nhk.or.jp/bakumon/*
// ==/UserScript==
var e = document.querySelectorAll('embed[autostart="1"]');
for(var i=0; i < e.length; i++) {
e[i].setAttribute('autostart', 0);
e[i].style.display = "none";
e[i].style.display = 'block';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment