欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决百度云下载限速

程序员文章站 2024-03-21 16:28:10
...

大多数浏览器都支持

1、在浏览器应用商店搜素 Tampermonkey ,然后安装这款浏览器插件即可,商城中没有此插件看步骤 2。

2、下载这款插件的 crx 格式的安装包(插件网上搜索下载),然后访问www.greasyfork.org 这个网站(网站链接),

然后在搜索用户脚本中搜索 解决百度云大文件下载限制  ,然后安装这个插件即可。

脚本代码

// ==UserScript==
// @name         解决百度云大文件下载限制
// @namespace    undefined
// @version      0.0.6
// @description  一行代码,解决百度云大文件下载限制
// @author       Hern
// @match        http://pan.baidu.com/*
// @match        https://pan.baidu.com/*
// @match        http://yun.baidu.com/*
// @match        https://yun.baidu.com/*
// @match        https://eyun.baidu.com/*
// @run-at       document-start
// @grant        none
// ==/UserScript==
/* jshint -W097 */
'use strict';


Object.defineProperty(Object.getPrototypeOf(navigator),'platform',{get:function(){return 'sb_baidu';}})




(function(){
var href=location.href;
/http:/.test(href)?location.href='https'+href.slice(4):0;
}());