Kej YouTube DL Helper

download extension for kej.tw/flvretriever

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name        Kej YouTube DL Helper
// @author      DickyT
// @license     GPL version 3
// @encoding    utf-8
// @date        17/05/2015
// @modified    22/05/2015
// @include     http://kej.tw/*
// @grant       GM_xmlhttpRequest
// @run-at      document-end
// @version     0.0.6
// @description download extension for kej.tw/flvretriever
// @namespace   ytbkejhelper
// ==/UserScript==


exportFunction(function() {
	unsafeWindow.document.getElementById('videoInfo').value = '請求中... Requesting data...';
	GM_xmlhttpRequest({
		method: 'GET',
		url: unsafeWindow.document.getElementById('linkVideoInfoURL').href,
		onload: function(data) {
			if (data.status == 200) {
				unsafeWindow.document.getElementById('videoInfo').value = data.responseText;
				unsafeWindow.getYouTubeUrl();
			}
			else {
				unsafeWindow.document.getElementById('videoInfo').value = '請求失敗 請重試 Request Fail, please try again';
			}
		}
	});
}, unsafeWindow, {defineAs: 'getVideoInfo'});

var dlAnchor = document.getElementById('linkVideoInfoURL');
dlAnchor.innerHTML = '重新請求 Request again';
unsafeWindow.window.getVideoInfo();
dlAnchor.addEventListener('click', function(e) {
	e.preventDefault();
	unsafeWindow.window.getVideoInfo();
});

var authorData = document.createElement('span');
authorData.innerHTML = '<br><a href="http://kej.tw/flvretriever/" class="tdnone">Kej\'s YouTube FLV Retriever Helper (Userscript Extension)</a> is powered by <a href="http://me.idickyt.com/" class="tdnone">Dicky Tsang</a><br>';
unsafeWindow.document.getElementsByClassName('setcenter')[0].appendChild(authorData);