您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Sets cookies to fake passed age check (1970-01-01)
当前为
// ==UserScript== // @name epicgames.com Store Age Check Bypass // @match https://store.epicgames.com/*/p/* // @grant none // @version 0.0.1 // @icon https://icons.duckduckgo.com/ip2/epicgames.com.ico // @description Sets cookies to fake passed age check (1970-01-01) // @license Unlicense // @run-at document-start // @namespace https://greasyfork.org/users/1257939 // ==/UserScript== function getCookie(name) { // Source: https://stackoverflow.com/a/24103596 var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return null; } if (!getCookie("HasAcceptedAgeGates")) { document.cookie = "egs_age_gate_dob=1970-0-1; path=/"; document.cookie = "HasAcceptedAgeGates=USK%3A18; path=/"; document.location = document.location; }