// ==UserScript== // @name YouTube Downloader - By Wígny Almeida // @namespace http://tampermonkey.net/ // @copyright Wígny Almeida | wigny.github.io // @version 2.3.2 // @description Download Audio and Video from Youtube // @author Wígny Almeida // @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 none // ==/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 = '
'+ ''; 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','http://savetomp3.com/#search='+window.location.href+''); $('.link_mp4').attr('href','https://savefrom.net/#url='+window.location.href+''); }).trigger(); }); })();