YouTube mp3 download with youtube-mp3.org

Simply add a "Download Mp3" link to send url to http://www.youtube-mp3.org/it

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/7725/33765/YouTube%20mp3%20download%20with%20youtube-mp3org.js

  1. // ==UserScript==
  2. // @name YouTube mp3 download with youtube-mp3.org
  3. // @namespace Restpeace
  4. // @description Simply add a "Download Mp3" link to send url to http://www.youtube-mp3.org/it
  5. // @include http://*youtube.*/*watch*
  6. // @include https://*youtube.*/*watch*
  7. // @version 1.0
  8. // @author Restpeace
  9. // ==/UserScript==
  10.  
  11. // ==ChangeLog==
  12. // @history 1.0 Updated headers.
  13. // ==/ChangeLog==
  14.  
  15. var video=window.location.href;
  16. var newLink = document.createElement("a");
  17. newLink.setAttribute('href', "http://www.youtube-mp3.org/it?youtube-url="+video);
  18. newLink.setAttribute('target', "_blank");
  19. newLink.innerHTML = 'Mp3 Download';
  20. var b1=document.getElementById("watch8-secondary-actions");
  21. var b2=document.getElementsByClassName("yt-uix-menu")[0];
  22. if(b1){
  23. b1.appendChild(newLink);
  24. }else{
  25. b2.appendChild(newLink);
  26. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址