Created
June 12, 2025 23:28
-
-
Save dimitricodes/0497ebf80b05fa2ed8400278771a3964 to your computer and use it in GitHub Desktop.
moto g 53
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
<!DOCTYPE html> | |
<html lang="pt-BR"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<title>Bypass Moto G53 5G - Intents Avançados</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
background-color: #121212; | |
color: #eee; | |
padding: 20px; | |
} | |
h1 { | |
text-align: center; | |
color: #00ff99; | |
margin-bottom: 20px; | |
} | |
button { | |
width: 100%; | |
padding: 15px; | |
margin-bottom: 12px; | |
font-size: 17px; | |
font-weight: bold; | |
border: none; | |
border-radius: 8px; | |
cursor: pointer; | |
background: linear-gradient(45deg, #00ff99, #007744); | |
color: #000; | |
transition: background 0.3s ease; | |
} | |
button:hover { | |
background: linear-gradient(45deg, #007744, #00ff99); | |
} | |
p { | |
text-align: center; | |
color: #666; | |
margin-top: 25px; | |
font-size: 14px; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Bypass Moto G53 5G - Intents Avançados</h1> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.SETTINGS;end'">Abrir Configurações Gerais</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.SYNC_SETTINGS;end'">Configurações de Contas do Google</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.ACCOUNT_SETTINGS;end'">Gerenciador de Contas</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.APPLICATION_DEVELOPMENT_SETTINGS;end'">Configurações de Desenvolvedor</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.SECURITY_SETTINGS;end'">Configurações de Segurança / Bloqueio</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.ACCESSIBILITY_SETTINGS;end'">Configurações de Acessibilidade</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.ACCESSIBILITY_DETAILS_SETTINGS;end'">Detalhes de Serviços de Acessibilidade</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.MANAGE_OVERLAY_PERMISSION;end'">Permissões de Sobreposição</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.WIRELESS_SETTINGS;end'">Configurações de Rede</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.APPLICATION_DETAILS_SETTINGS;data=package:com.google.android.gms;end'">Google Play Services - Detalhes</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.APPLICATION_DETAILS_SETTINGS;data=package=com.android.vending;end'">Google Play Store - Detalhes</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.intent.action.MAIN;category=android.intent.category.HOME;end'">Voltar para a Tela Inicial</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.intent.action.MASTER_CLEAR;end'">Reset de Fábrica (CUIDADO)</button> | |
<button onclick="window.location.href='intent:#Intent;action=android.settings.REQUEST_INSTALL_PACKAGES;end'">Permitir Instalação de Apps de Fontes Desconhecidas</button> | |
<button onclick="alert('Teste simples OK!')">Teste Simples (alert)</button> | |
<p>Clique nos botões para abrir as respectivas configurações via intents no seu Moto G53.</p> | |
<p>Cuidado com opções como reset de fábrica que apagam tudo!</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment