iitc-project / ingress-intel-total-conversion

ingress.com/intel total conversion user script with some new features. Should allow easier extension of the intel map.
http://iitc.jonatkins.com/
ISC License
989 stars 552 forks source link

IITCm url handler needs to be updated due to NIA dropping www redirect #1136

Closed ckanoab closed 8 years ago

ckanoab commented 8 years ago

NIA changed their server so that it no longer redirects requests for ingress.com to www.ingress.com. Currently IITCm only watches for www.ingress.com, needs to watch for both

Jormund commented 8 years ago

The correction uses wrong syntax for @include. @include https://_.ingress.com/intel_ does not match https://ingress.com/intel It doesn't matter for most users because @match works for current versions of both Tampermonkey and Greasemonkey. With @match, the wildcard '*_.' can mean 'nothing'. https://wiki.greasespot.net/Include_and_exclude_rules If @include is required for some old versions of browsers/userscript add-on, I suggest adding explicit @include https://ingress.com/intel_ (to still disallow a fake url ending with ingress.com, like example-ingress.com)