-
-
Save Z-Y00/b4ee856ac0ff1989e15f6abeb2523f1c to your computer and use it in GitHub Desktop.
ingress passcode auto run
This file contains 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
// disable iitc plugin if it's on | |
// go to https://www.ingress.com/intel | |
// open console and paste in the code below, press enter | |
// join https://t.me/passcodes for more passcodes | |
// add jquery | |
var jq = document.createElement('script'); | |
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(jq); | |
// add pascode | |
pass = [ | |
'EZUMGGYY0NEXUS0', | |
'EBICPFHG0THISBE8', | |
'wrgoabab4tamamshud8', | |
'hxsoxdli1signal2', | |
'zicjouss4anodyne6', | |
'ihDitcof8morRIss5', | |
'aftCenam3lasolution3', | |
'tmabquqf2niantic0', | |
'mnpkryzu7sthenic1', | |
'ULUBULUZ9PARTICLE6', | |
'cddbcecb3agapeyeff9', | |
'cfynsckl2chaos6', | |
'GIIHUVIQ3AMONGUS6', | |
'wqvbuuna5dark3', | |
'pfe76cfi539uh', | |
'jzv24cfi268nb', | |
'wkc35cfi993xj', | |
'VFU38AK358FS', | |
'jcw34ak264bo', | |
'CZJ36AK844BC', | |
]; | |
pass.forEach(function(pass,i) { | |
setTimeout(function() { | |
console.log('enter passcode:', pass, i); | |
$('#passcode').val(pass); | |
$('#submit').click() | |
},i*3000); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment