// ==UserScript== // @name Download Youtube videos and subtitles // @namespace https://www.findhao.net // @version 0.2.2 // @description 获取youtube视频和字幕的下载链接 // @include http://www.youtube.com/* // @include https://www.youtube.com/* // @exclude http://www.youtube.com/embed/* // @exclude https://www.youtube.com/embed/* // @match http://www.youtube.com/* // @match https://www.youtube.com/* // @match http://s.ytimg.com/yts/jsbin/html5player* // @match https://s.ytimg.com/yts/jsbin/html5player* // @match http://manifest.googlevideo.com/* // @match https://manifest.googlevideo.com/* // @match http://*.googlevideo.com/videoplayback* // @match https://*.googlevideo.com/videoplayback* // @match http://*.youtube.com/videoplayback* // @match https://*.youtube.com/videoplayback* // @copyright 2017+, Find // @author FindHao // @downloadURL none // ==/UserScript== var download=document.createElement("span"); download.setAttribute("calss", "yt-uix-button-subscription-container"); download.setAttribute("id", "findspace-downyoutube"); download.innerHTML=''; download.addEventListener("click", function() { var id = Math.random(); document.write('
'); document.getElementById('post' + id).submit(); }); var beforeNode=document.getElementById("watch-like-dislike-buttons"); document.getElementById("watch8-secondary-actions").insertBefore(download,beforeNode);