« 上一篇下一篇 »

chrome谷歌浏览器解除百度云的下载限制方法之油猴插件+脚本

一、打开谷歌浏览器,离线安装扩展插件(右键下载,该插件是大名鼎鼎的油猴):tampermonkey.crx

二、在谷歌浏览器打开https://greasyfork.org/zh-CN/,在右上方搜索框内搜索“解决百度云”,点击搜索出来的链接,安装。(原理就是,在上面的油猴插件里,保存一段js代码,当打开百度网盘这个网址的时候,这段Js也会同时生效。)

三、在谷歌浏览器打开百度网盘,现在下载文件可以直接下载,或者复制链接到迅雷下载了。


// ==UserScript==
// @name         解决百度云大文件下载限制
// @namespace    undefined
// @version      0.0.6
// @description  一行代码,解决百度云大文件下载限制
// @author       funianwuxin
// @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;
}());