这些视频网站都不要脸了

不阻止的话,网页看bilibili直播,会占满上传的带宽(对,有多少占多少),造成网络卡顿,或者触发电信的反pcdn机制,间接断网

// ==UserScript==
// @name B站直播P2P屏蔽脚本
// @namespace https://enixjin.net
// @version 1.0
// @description 屏蔽直播的P2P上传功能,减少设备资源占用
// @author enixjin
// @match *://live.bilibili.com/*
// @grant none
// @run-at document-start
// ==/UserScript==

(function() {
'use strict';
    delete window.RTCPeerConnection;
    delete window.mozRTCPeerConnection;
    delete window.webkitRTCPeerConnection;
    console.log('P2P blocked!');
})();