Skip to content

Instantly share code, notes, and snippets.

@4ft35t
Forked from idealhack/ingress-passcode.js
Created May 27, 2018 02:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 4ft35t/a26dd1c92bdcc1e94433453ed19a5e67 to your computer and use it in GitHub Desktop.
Save 4ft35t/a26dd1c92bdcc1e94433453ed19a5e67 to your computer and use it in GitHub Desktop.
ingress passcode auto run
// 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