Youtube URL Cleaner

Clean youtube URL

Pada tanggal 24 April 2015. Lihat %(latest_version_link).

// ==UserScript==
// @run-at document-start
// @id             Youtube URL Cleaner
// @name           Youtube URL Cleaner
// @namespace      
// @description    Clean youtube URL
// @include        http://www.youtube.com/watch?*
// @include        https://www.youtube.com/watch?*
// @version        1.2
// ==/UserScript==
var newurl = "https://www.youtube.com/watch?"+document.URL.match(/v\=[^&]*/g);
if (newurl != document.URL) location.replace(newurl);