Skip to content

Instantly share code, notes, and snippets.

@gustavodiel
Last active September 4, 2020 15:17
Show Gist options
  • Save gustavodiel/5c846dfc28a717b3fb2408764f1920ca to your computer and use it in GitHub Desktop.
Save gustavodiel/5c846dfc28a717b3fb2408764f1920ca to your computer and use it in GitHub Desktop.
Add Brasil as options for Github 2FA for Cellphone number
// Paste this on the JavaScript console of your browser on the list page:
var brazil = document.createElement('option');
brazil.value = '+55';
brazil.appendChild(document.createTextNode('Brazil +55'));
document.querySelectorAll('#countrycode').forEach((select) => select.appendChild(brazil));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment