NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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>');
});
});