[YouTube.com] youtube-dl-php - Download Button

For use with: https://github.com/PXgamer/youtube-dl-php

当前为 2016-09-28 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name [YouTube.com] youtube-dl-php - Download Button
  3. // @namespace PXgamer
  4. // @version 0.1
  5. // @description For use with: https://github.com/PXgamer/youtube-dl-php
  6. // @author PXgamer
  7. // @include *youtube.com/watch?v=*
  8. // @require https://code.jquery.com/jquery-3.1.0.min.js
  9. // @grant none
  10. // ==/UserScript==
  11. /*jshint multistr: true */
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. var searchGET = '/youtube-dl-php/tests/$_GET.test.php'; // Your path to GET based implementation (i.e. /tests/$_GET.test.php)
  17.  
  18. var vid_id = location.href.split('watch?v=')[1].split('&')[0];
  19.  
  20. $('#watch8-secondary-actions').append('<div class="yt-uix-menu"><a target="_blank" href="'+searchGET+'?vid_id='+vid_id+'"><button class="yt-uix-button yt-uix-button-size-default yt-uix-button-opacity"><span class="yt-uix-button-content">Download/Parse Video</span></button></a></div>');
  21. })();