NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name CarambaTV downloader // @description download video on carambatv.ru // @author Petya Levkin // @license MIT // @version 1.0 // @include http://carambatv.ru/* // ==/UserScript== (function (window, undefined) { var w; if (typeof unsafeWindow !== undefined) { w = unsafeWindow; } else { w = window; } if (w.self != w.top) { return; } if ((/http:\/\/carambatv.ru/.test(w.location.href)) && (typeof crmb_vuid !== "undefined")) { title = $('h1', '.video-title').text() + '.mp4'; url = 'http://video1.carambatv.ru/v/' + crmb_vuid + '/720.mp4'; $('.video-summary').append( '<a href="' + url + '" download>скачать/download</a>' ); } })(window);