福利吧网盘自动补全

自动补全页面中的百度网盘地址

当前为 2015-03-22 提交的版本,查看 最新版本

// ==UserScript==
// @name        福利吧网盘自动补全
// @namespace   
// @author      ShawnMew
// @description 自动补全页面中的百度网盘地址
// @include     http://fuli.ba/*
// @version     1.0.0.0
// ==/UserScript==

function replaceBaiduPan(){
    var str=window.document.body.innerHTML;
    var strurl="http://pan.baidu.com/s/";
    var match=/\/s\//;
    window.document.body.innerHTML=(str.replace(match,strurl));
    
}
window.addEventListener('load',replaceBaiduPan,true);