Skip to content

Instantly share code, notes, and snippets.

@alick
Forked from idealhack/ingress-passcode.js
Last active September 28, 2022 22:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alick/4ec55a73dd0bad9a9ba551f6e8deb2a5 to your computer and use it in GitHub Desktop.
Save alick/4ec55a73dd0bad9a9ba551f6e8deb2a5 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 = [
'hxsoxdli1signal2',
'zicjouss4anodyne6',
'ihDitcof8morRIss5',
'aftCenam3lasolution3',
'tmabquqf2niantic0',
'mnpkryzu7sthenic1',
'ULUBULUZ9PARTICLE6',
'cddbcecb3agapeyeff9',
'cfynsckl2chaos6',
'GIIHUVIQ3AMONGUS6',
'wqvbuuna5dark3',
'pfe76cfi539uh',
'jzv24cfi268nb',
'wkc35cfi993xj',
'VFU38AK358FS',
'jcw34ak264bo',
'CZJ36AK844BC',
];
t = [];
pass.forEach(function(p,i) {
t[i] = setTimeout(function() {
console.log('enter passcode:', p, i);
$('#passcode').val(p);
$('#submit').click()
},i*8000);
});
function clearAll() {
for (e in t) {
clearTimeout(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment