// ==UserScript== // @name Bluesky age assurance bypass // @version 1.0 // @match https://bsky.app/* // @match https://main.bsky.dev/* // @grant none // @run-at document-start // ==/UserScript== const _fetch = globalThis.fetch; globalThis.fetch = async function (req, init) { if (req instanceof Request) { const url = new URL(req.url); switch (url.pathname) { case "/xrpc/app.bsky.unspecced.getAgeAssuranceState": { return Response.json({ lastInitiatedAt: "2025-07-14T14:22:43.912Z", status: "assured", }); } } } else if (req === "https://bsky.app/ipcc") { return Response.json({ countryCode: "US", isAgeRestrictedGeo: false, }); } return _fetch.call(this, req, init); };