K. / Get Data fmt form VnSharing VietSub

// ==UserScript==
// @name        Get Data fmt form VnSharing VietSub
// @namespace   © .k//UserScript
// @description Tool for IceAnime Uploader
// @include     http://vietsub.vnsharing.net/Anime/*
// @version     1
// @grant       none
// ==/UserScript==

$(function(){
    $('#divVideoJW').each(function(){
        $(this).append('<textarea style="width:500px;background:#000;color:#555;border:1px solid;" onclick="$(this).select()">' + $(this).find('embed').attr('flashvars') + '</textarea>');
    });
});