您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Youtube video Downloader
// ==UserScript== // @name Youtube Downloader // @namespace http://tampermonkey.net/ // @version 0.4 // @description Youtube video Downloader // @author Anastasia Mukhlynina // @match https://www.youtube.com/* // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... setInterval(setDownLoader, 1000); function setDownLoader(){ let link = document.getElementById('downloader'); if(!link){ link = document.createElement('a'); link.innerText = 'Скачать'; link.setAttribute('target', '_blank'); link.setAttribute('id', 'downloader'); document.querySelector('#info-text').appendChild(link); let btnOfLink = document.createElement('button'); document.querySelector('#info-text').appendChild(btnOfLink); btnOfLink.appendChild(link); btnOfLink.setAttribute('class', 'stylish'); let stylishBtn = document.querySelector('.stylish'); stylishBtn.style.backgroundColor = 'red'; stylishBtn.style.margin = '1px'; stylishBtn.style.outlineColor = 'white'; link.style.textDecoration = 'none'; link.style.color = 'white'; link.style.fontFamily ='Roboto'; link.style.fontSize = '10px'; document.querySelector('#info-text').style.padding='5px'; } let hrefDownload ='https://www.ssyoutube.com/watch' + window.location.search; link.setAttribute('href', hrefDownload); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址