Skip to content

Instantly share code, notes, and snippets.

View naothomachida's full-sized avatar
🎯
Focusing

Naotho Machida naothomachida

🎯
Focusing
View GitHub Profile

Github Two-Factor Authentication (2FA) for Brazil via SMS

The Github doesn't provide country code for Brazil. To add this option, just run the code below in your console:

var brazil = document.createElement('option');
brazil.value = '+55';
brazil.appendChild(document.createTextNode('Brazil +55'));
document.querySelectorAll('#countrycode').forEach((select) => select.appendChild(brazil));