By pwlin
—
Last update
May 3, 2008
—
Installed
780 times.
// ==UserScript==
// @name YouTube With No JavaScript
// @description This hack will eliminate the need of Javascript for playing clips on YouTube site. (Handy if you have NoScript extension on)
// @namespace http://userscripts.org/scripts/show/21900
// @include http://youtube.com/*
// @include *.youtube.com/*
// ==/UserScript==
function $(id,doc){ if (!doc || doc == '') {doc = document ; } return doc.getElementById(id); }
(function(){
try {
$('watch-player-div').innerHTML = $('embed_code').value ;
}
catch(e){}
})();