Greasy Fork

Greasy Fork is available in English.

解除B站区域限制

把获取视频地址相关接口的返回值替换成我的反向代理服务器的返回值; 因为替换值的操作是同步的, 所有会卡几下..., 普通视频不受影响; 我的服务器有点渣, 没获取成功请多刷新几下; 当前只支持bangumi.bilibili.com域名下的番剧视频;

当前为 2017-04-17 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         解除B站区域限制
// @namespace    http://tampermonkey.net/
// @version      2.2.3
// @description  把获取视频地址相关接口的返回值替换成我的反向代理服务器的返回值; 因为替换值的操作是同步的, 所有会卡几下..., 普通视频不受影响; 我的服务器有点渣, 没获取成功请多刷新几下; 当前只支持bangumi.bilibili.com域名下的番剧视频;
// @author       ipcjs
// @require      https://static.hdslb.com/js/md5.js
// @include      *://bangumi.bilibili.com/anime/*
// @include      *://bangumi.bilibili.com/anime/v/*
// @include      *://www.bilibili.com/html/html5player.html*
// @include      *://www.bilibili.com/blackboard/html5player.html*
// @run-at       document-end
// @grant        none
// ==/UserScript==

/**
 * 把获取视频地址相关接口的返回值替换成biliplus的接口的返回值,
 * 因为替换值的操作是同步的, 所有会卡几下..., 又因为biliplus的接口不支持跨域请求, 所以使用了我自己的服务器做反向代理(-_-#);
 * 源码仓库: https://github.com/ipcjs/bilibili-helper/tree/user.js
 */
    'use strict';
    var biliplusHost = getCookie('bangumi_aera_limit_hack_server'); // 优先从cookie中读取服务器地址
    var i_am_a_big_member_who_is_permanently_banned = getCookie('bangumi_aera_limit_hack_blocked_forever'); // "我是一位被永久封号的大会员"(by Google翻译)
    if (!biliplusHost) {
        biliplusHost = 'http://biliplus.ipcjsdev.tk'; // 我的反向代理服务器
        // biliplusHost = 'https://www.biliplus.com'; // 支持https的服务器
    }

    console.log('[' + GM_info.script.name + '] run on: ' + window.location.href);
    if (!window.jQuery) { // 若还未加载jQuery, 则监听
        var jQuery;
        Object.defineProperty(window, 'jQuery', {
            configurable: true, enumerable: true, set: function (v) {
                jQuery = v;
                injectDataFilter();// 设置jQuery后, 立即注入
            }, get: function () {
                return jQuery;
            }
        });
    } else {
        injectDataFilter();
    }

    function injectDataFilter() {
        window.jQuery.ajaxSetup({
            dataFilter: function (data, type) {
                var json, obj, group, params, curIndex, aid;
                // console.log(arguments, this);
                if (this.url.startsWith(window.location.protocol + '//bangumi.bilibili.com/web_api/season_area')) {
                    // 番剧页面是否要隐藏番剧列表 API
                    console.log(data);
                    json = JSON.parse(data);
                    // 限制区域时的data为:
                    // {"code":0,"message":"success","result":{"play":0}}
                    if (json.code === 0 && json.result && json.result.play === 0) {
                        json.result.play = 1; // 改成1就能够显示
                        data = JSON.stringify(json);
                        console.log('==>', data);
                    }
                }
                return data;
            }
        });
        /*
        {"code":0,"message":"success","result":{"aid":9854952,"cid":16292628,"episode_status":2,"payment":{"price":"0"},"player":"vupload","pre_ad":0,"season_status":2}}
        */
        var originalAjax = $.ajax;
        $.ajax = function(param){
        	if( param.url.match('/web_api/get_source') ){
        		param.url=biliplusHost+'/api/bangumi?season=' + window.season_id;
        		param.type='GET';
        		delete param.data;
        		var oriSuccess=param.success;
        		param.success = function(data){
        			var found=null;
        			for(var i=0;i < data.result.episodes.length;i++){
        				if(data.result.episodes[i].episode_id == window.episode_id){
        					found=data.result.episodes[i];
        				}
        			}
        			var returnVal = found!=null ? {
	        			"code":0,
	        			"message":"success",
	        			"result":{
	        				"aid":found.av_id,
	        				"cid":found.danmaku,
	        				"episode_status":found.episode_status,
	        				"payment":{"price":"0"},
	        				"player":"vupload",
	        				"pre_ad":0,
	        				"season_status":data.result.season_status
	        			}
	        		} : {
        				code:-404,
        				message:'不存在该剧集'
        			};
        			console.log('[' + GM_info.script.name + '] Replaced request: get_source',returnVal);
        			oriSuccess(returnVal);
        		}
        		return originalAjax.apply(this,[param])
        	}else if( param.url.match('/player/web_api/playurl') ){
        		var module=param.url.match(/module=(\w+)/)[1];
        		param.url = biliplusHost+'/BPplayurl.php?'+param.url.split('?')[1].replace(/cid=\d+/,function(s){return s+'|'+module});
        		console.log('[' + GM_info.script.name + '] Redirected request: bangumi playurl -> ',param.url);
        		return originalAjax.apply(this,[param]);
        	}else{
        		return originalAjax.apply(this,arguments);
        	}
        }
    }

    function isAeraLimit(json){
        return json.durl && json.durl.length === 1 && json.durl[0].length === 15126 && json.durl[0].size === 124627;
    }

    function getParam(url, key) {
        return (url.match(new RegExp('[?|&]' + key + '=(\\w+)')) || ['', ''])[1];
    }
    function getCookie(key) {
        var map = document.cookie.split('; ').reduce(function (obj, item) {
            var entry = item.split('=');
            obj[entry[0]] = entry[1];
            return obj;
        }, {});
        return map[key];
    }
    // document.cookie=`bangumi_aera_limit_hack_server=https://www.biliplus.com; domain=.bilibili.com; path=/; expires=${new Date("2020-01-01").toUTCString()}`;
    function setCookie(key, value, options) {
        options || (options = { domain: '.bilibili.com', path: '/', expires: new Date('2020-01-01').toUTCString() });
        var c = Object.keys(options).reduce(function (str, key) {
            return str + '; ' + key + '=' + options[key];
        }, key + '=' + value);
        document.cookie = c;
        return c;
    }
    function showLogin(){
    	var loginUrl=biliplusHost + '/login',
    	iframeSrc='https://passport.bilibili.com/login?appkey=27eb53fc9058f8c3&api='+encodeURIComponent(loginUrl)+'&sign='+hex_md5('api='+loginUrl+'c2ed53a74eeefe3cf99fbd01d8c9c375');
    	
    	var div = document.createElement('div');
      div.id='GMBiliPlusLoginContainer';
      div.innerHTML='<div style="position:fixed;top:0;left:0;z-index:10000;width:100%;height:100%;background:rgba(0,0,0,.5);animation-fill-mode:forwards;animation-name:pop-iframe-in;animation-duration:.5s;cursor:pointer"><iframe src="'+iframeSrc+'" style="background:#e4e7ee;position:absolute;top:10%;left:10%;width:80%;height:80%"></iframe><div class="GMBiliPlusCloseBox">×</div></div>'
      div.firstChild.addEventListener('click',function(e){
        if(e.target==this || e.target.className=='GMBiliPlusCloseBox'){
        	if(!confirm('确认关闭?'))
        		return false;
          div.firstChild.style.animationName='pop-iframe-out'
          setTimeout(function(){
            div.remove();
          },5e2);
        }
      })
      document.body.appendChild(div);
      delete localStorage.balh_login;
    }
    //add some style
    document.head.appendChild(document.createElement('style')).innerHTML='@keyframes pop-iframe-in{0%{opacity:0;transform:scale(.7);}100%{opacity:1;transform:scale(1)}}@keyframes pop-iframe-out{0%{opacity:1;transform:scale(1);}100%{opacity:0;transform:scale(.7)}}.GMBiliPlusCloseBox{position:absolute;top:5%;right:8%;font-size:40px;color:#FFF}'
    window.bangumi_aera_limit_hack = {
        setCookie: setCookie,
        getCookie: getCookie,
        login: showLogin
    }
    //未登录主站,强制指定值
    if(getCookie("DedeUserID")==undefined){
    	localStorage.balh_notFirst=1;
    	localStorage.balh_login=0;
    	localStorage.balh_mainLogin=0
    }else if(localStorage.balh_mainLogin!=undefined){
    //主站未登录变为登录,重置显示弹窗
    	delete localStorage.balh_notFirst;
    	delete localStorage.balh_login;
    	delete localStorage.balh_mainLogin;
    }
    //第一次打开,确认是否已登陆;未登录显示确认弹窗
    if(!localStorage.balh_notFirst){
    	localStorage.balh_notFirst=1;
    	var script = document.createElement('script');
    	script.src=biliplusHost+'/login?act=expiretime';
    	script.addEventListener('load',function(){
    		if(localStorage.oauthTime==undefined){
    			localStorage.balh_login = 0;
    			if(confirm('看起来你是第一次使用解除区域限制\n要不要考虑进行一下授权?\n\n授权后可以观看1080P(如果你是大会员或承包过的话)\n\n你可以随时通过执行 bangumi_aera_limit_hack.login() 来打开授权页面')){
		    		console.log('confirmed');
		    		showLogin();
		    	}
    		}else
    			localStorage.balh_login=1
    	})
    	document.head.appendChild(script);
    }else if(localStorage.balh_login == undefined){
    //非第一次打开,登录状态被重置,重新检测
    	var script = document.createElement('script');
    	script.src=biliplusHost+'/login?act=expiretime';
    	script.addEventListener('load',function(){
    		localStorage.balh_login = (localStorage.oauthTime==undefined)?0:1
    	})
    	document.head.appendChild(script);
    }else if(localStorage.balh_login == 1 && Date.now()-parseInt(localStorage.oauthTime)>24*60*60*1000){
    //已登录,每天为周期检测key有效期,过期前五天会自动续期
    	var script = document.createElement('script');
    	script.src=biliplusHost+'/login?act=expiretime';
    	document.head.appendChild(script);
    }