Greasy Fork is available in English.

网站v2rayssr去除访问限制

try to take over the world!

// ==UserScript==
// @name         网站v2rayssr去除访问限制
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       LancCJ
// @include      *://*.v2rayssr.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    console.log("去除访问限制");
    document.querySelector(".mask").style.display = "none";
})();