// ==UserScript== // @name YouTube Downloader - By Wígny Almeida // @namespace http://tampermonkey.net/ // @copyright Wígny Almeida | wigny.github.io // @homepageURL https://goo.gl/qkTWvG // @version 2.4.5 // @description Download Audio and Video from Youtube // @author Wígny Almeida // @date 11-29-2017 // @license CC BY-NC-SA 4.0 // @match https://www.youtube.com/* // @include http*://*.youtube.com/* // @include http*://youtube.com/* // @include http*://*.youtu.be/* // @include http*://youtu.be/* // @require https://code.jquery.com/jquery-3.2.1.min.js // @icon https://www.youtube.com/yts/img/favicon-vfl8qSV2F.ico // @downloadURL https://update.greasyfork.icu/scripts/35777/YouTube%20Downloader%20-%20By%20W%C3%ADgny%20Almeida.user.js // @updateURL https://update.greasyfork.icu/scripts/35777/YouTube%20Downloader%20-%20By%20W%C3%ADgny%20Almeida.meta.js // ==/UserScript== (function() { 'use strict'; // Your code here.. $(document).ready(function(){ $('head').append(''); //Acesse https://wigny.github.io //Add clickable icon function add_btn_url_atual(){ var parent = document.querySelector('#top-row'); var url = window.location.href; var html = '
'+ ''+ 'DOWNLOAD MP3'+ ''+ '
'+ '
'+ ''+ 'DOWNLOAD MP4'+ ''+ '
'; parent.insertAdjacentHTML('beforeend', html); } setTimeout(function(){ add_btn_url_atual(); },1000); //By Wígny Almeida //Altera o href conforme cliques $(document).on('click',function(){ console.log('clicou'); $('.link_mp3').attr('href','https://savetomp3.com/'+window.location.href+''); $('.link_mp4').attr('href','https://pt.savefrom.net/#url='+window.location.href+''); }).trigger(); }); })();