This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//very lazy proxy to make old versions of twitter app kinda work | |
//run npm i http-mitm-proxy, then node twitter6.js | |
//dms don't work, everything else kinda does | |
//PROBABLY NOT SAFE TO ACTUALLY USE | |
//CHANGE THESE | |
const authToken = '' //auth_token cookie | |
const csrfToken = '' //ct0 cookie | |
//for some reason, http-mitm-proxy incorrectly(?) uses fs.writeFile and it doesn't work. idk if it's something that changed in a node version or what, but patching this fixes it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name roblox age overrider | |
// @version 1.0 | |
// @description allows you to verify your id even if you are under 13 (ages you up) | |
// @author shy | |
// @match https://www.roblox.com/my/account | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |