Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save taizooo/400818 to your computer and use it in GitHub Desktop.

Select an option

Save taizooo/400818 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name disable youpy tumblr sound
// @namespace http://d.hatena.ne.jp/youpy/
// @include http://gree.tumblr.com/*
// ==/UserScript==
var sounds = document.querySelectorAll('audio');
[].forEach.call(sounds, function(e) {
e.parentNode.removeChild(e);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment