YouTube With No JavaScript

By pwlin Last update May 3, 2008 — Installed 780 times. Daily Installs: 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0
// ==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){}
})();