天翼云盘下载助手

天翼云盘免登录下载

  1. // ==UserScript==
  2. // @name 天翼云盘下载助手
  3. // @author wusuluren
  4. // @description 天翼云盘免登录下载
  5. // @require http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
  6. // @match *://cloud.189.cn/*
  7. // @supportURL https://github.com/Wusuluren
  8. // @version 0.0.1
  9. // @grant None
  10. // @namespace https://greasyfork.org/users/194747
  11. // ==/UserScript==
  12. (function () {
  13. 'use strict';
  14. $(function(){
  15. var timer = setInterval(function() {
  16. if(this.downloadUrl !== undefined) {
  17. $('.download-link').attr('href', this.downloadUrl)
  18. clearInterval(timer)
  19. }
  20. }, 100)
  21. })
  22. })();