-
-
Save alick/4ec55a73dd0bad9a9ba551f6e8deb2a5 to your computer and use it in GitHub Desktop.
ingress passcode auto run
This file contains hidden or 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 = [ | |
'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