Greasy Fork is available in English.
WebRTC 禁用脚本
// ==UserScript== // @name アクセラレータ // @namespace AcceleratorWebRTCKiller // @namespace TGSAN // @version 1.0 // @description WebRTC 禁用脚本 // @author TGSAN // @run-at document-start // @include /.*/ // @grant unsafeWindow // ==/UserScript== (function () { "use strict"; (function (window) { delete window.RTCPeerConnection; delete window.webkitRTCPeerConnection; delete window.mozRTCPeerConnection; })(unsafeWindow); console.log("Accelerator killed WebRTC."); })();