ERROR: IITC failed to extract the required parameters from the intel site

Last updated on September 12th, 2015 at 05:56 pm

I’ve got the error by using IITC for Ingress today

IITC failed to extract the required parameters from the intel site
This can happen after Niantic update the standard intel site. A fix will be needed from the IITC developers.

[code lang=”javascript”]
– var reVersion = new RegExp(‘[a-z]=[a-z].getData\\(\\);[a-z].v="([a-f0-9]{40})";’);
+ var reVersion = new RegExp(‘[a-z].v="([a-f0-9]{40})";’);

– var minified = new RegExp(‘^[a-zA-Z$][a-zA-Z$0-9]$’);
+ var minified = new RegExp(‘^[a-zA-Z$0-9]{1,2}$’);
[/code]

Reference: https://github.com/dwinss/ingress-intel-total-conversion/commit/26c7616d0f8e070451e455e70003c47f1bb279a2

  1. Click the Tampermonkey Button at the Top Right of your Google Browser
  2. Click on Dashboard
  3. Click on IITC: Ingress Intel Map Total Conver….
  4. Jump to the link 12622
  5. Modify like this

[code lang=”javascript”]
window.extractFromStock = function() {
window.niantic_params = {}

// extract the former nemesis.dashboard.config.CURRENT_VERSION from the code
// var reVersion = new RegExp(‘[a-z]=[a-z].getData\\(\\);[a-z].v="([a-f0-9]{40})";’);
var reVersion = new RegExp(‘[a-z].v="([a-f0-9]{40})";’);

// var minified = new RegExp(‘^[a-zA-Z$][a-zA-Z$0-9]$’);
var minified = new RegExp(‘^[a-zA-Z$0-9]{1,2}$’);
[/code]

Then refresh your browser.

Tags:

Discover more from Juzhax Technology

Subscribe now to keep reading and get access to the full archive.

Continue reading