您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script helps to add a download button. Saveclipbro.com features the fastest ways to download YouTube videos and audios, ensuring quality.
当前为
// ==UserScript== // @name Download Audio & Video from YouTube (MP3, FHD, MP4, FLV, WKV, etc) - Saveclipbro.com // @description This script helps to add a download button. Saveclipbro.com features the fastest ways to download YouTube videos and audios, ensuring quality. // @namespace https://gf.qytechs.cn/ // @homepageURL https://gf.qytechs.cn/scripts/34613 // @supportURL https://gf.qytechs.cn/scripts/34613/feedback // @author Punisher // @version 2.9 // @date 2018-06-24 // @compatible chrome // @compatible firefox // @compatible opera // @compatible safari // @license CC BY-NC-ND 4.0 International. https://creativecommons.org/licenses/by-nc-nd/4.0/ // @match *://www.youtube.com/* // ==/UserScript== if("undefined" == typeof (punisher)) { var punisher = { userUrl: 'http://saveclipbro.com/convert?linkToDownload=', currentMediaUrl: null, getParam : function (document, variable){ var query = document.location.search.substring(1); var vars = query.split("&"); for (var i=0;i<vars.length;i++) { var pair = vars[i].split("="); if(pair[0] == variable){return pair[1];} } return(false); }, init : function() { punisher.onPageLoad(); }, addButtons: function(document) { var icon = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElNRQfiBgcWJSfQnWd+AAAA8klEQVQoz4XQvS6DcRQG8F8/SBEf0UR160J0MAkuwCAxsolRuADXYMF1WEQT6UDcgMkgEl9N2MSgvhLRhPf9G5rykiZ9znJyzpNznuehA1KJftSyHBp2PSQJaUsmPLq2bwiv5pwmr2QdCG4tqguCZ1O/y3QnDdm2035rCmr2RFkFw/rQpSgDggEbxh2piFhwoSH48iQSBC/W3QkOdTefbIqFREXqPluEjNiZSWPCTyYpPdK4dyKTwYcrsyqKBv9ILZp32TJb1mvVuyB4UxMEse2miha67YjFtky7ERwb+e8/r6oqjxXnZtpFVFICOeXOKYNvVG9Jr+BMPlYAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTgtMDYtMDdUMjI6Mzc6MzktMDQ6MDAbP7BNAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE4LTA2LTA3VDIyOjM3OjM5LTA0OjAwamII8QAAAABJRU5ErkJggg=='; var punisherpather = punisher.userUrl + encodeURIComponent(document.URL) + '&submit='; var div_embed = null; var target = '_blank'; if(document.getElementById('meta-contents')) { var div_embed = document.getElementById('meta-contents').querySelector('#top-row ytd-video-owner-renderer.ytd-video-secondary-info-renderer #sponsor-button'); div_embed.innerHTML += '<paper-button subscribed id="punisher" style="float:right" raised class="ytd-button-renderer"><a href="' + punisherpather + '" target="' + target + '" style="text-decoration: none; color: black;" class="style-scope ytd-subscribe-button-renderer"><img style="vertical-align: bottom;" src="' + icon + '"> <strong>Download</strong></a></paper-button>'+ div_embed.innerHTML; } else if(document.getElementById('watch8-sentiment-actions')) { var div_embed = document.getElementById('watch8-sentiment-actions'); var buttonclass = "yt-uix-button yt-uix-button-default yt-uix-tooltip"; var spanclass = "yt-uix-button-group"; div_embed.innerHTML = '<span id="punisher" class="' + spanclass + '"><a href="' + punisherpather + '" target="' + target + '"><button class="start ' + buttonclass + '" type="button" title="Download"><img alt="" class="" style="" src="' + icon + '"> <span class="yt-uix-button-content"><strong>Download</strong></span></button></a>' + div_embed.innerHTML; } }, onPageLoad : function() { if(document.body && document.domain == 'www.youtube.com') { setInterval(punisher.check, 1300); punisher.check(); } }, check: function() { if(punisher.currentMediaUrl != document.URL && typeof ytplayer != 'undefined' && ytplayer) { punisher.currentMediaUrl = document.URL; if(document.getElementById('punisher')) { document.getElementById('punisher').outerHTML=""; } } if(!document.getElementById('punisher') && typeof ytplayer != 'undefined' && ytplayer) { punisher.addButtons(document); } }, }; } punisher.init();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址